3

次のように、データから 2D ヒート マップをプロットするための単純なスキームを使用しています。

set pm3d map
set pm3d interpolation 5,5
splot "file"

ここで、このデータのいくつかの点を、おそらく白色でマークする必要があります。私はやろうとしました:

splot "file"; plot "points"

それは機能しておらず、次のように書いています:「2Dプロットにpm3dを使用できません」。

4

1 に答える 1

3

ファイルはどのように見えますか? できるよ:

splot 'file' with pm3d, 'points' with points linecolor rgb "white"

'points'ただし、見た目によっては、using 仕様を追加する必要がある場合があります。

splot 'file' with pm3d, 'points' using 1:2:(0.0) with points linecolor rgb "white"
于 2012-10-28T15:56:01.247 に答える