Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように、データから 2D ヒート マップをプロットするための単純なスキームを使用しています。
set pm3d map set pm3d interpolation 5,5 splot "file"
ここで、このデータのいくつかの点を、おそらく白色でマークする必要があります。私はやろうとしました:
splot "file"; plot "points"
それは機能しておらず、次のように書いています:「2Dプロットにpm3dを使用できません」。
ファイルはどのように見えますか? できるよ:
splot 'file' with pm3d, 'points' with points linecolor rgb "white"
'points'ただし、見た目によっては、using 仕様を追加する必要がある場合があります。
'points'
splot 'file' with pm3d, 'points' using 1:2:(0.0) with points linecolor rgb "white"