私はgnuplotを初めて使用し、データファイルからmina nd maxを決定し、その後データをプロットしようとしています
これまでのところ、次のように最小値と最大値を決定できました。
# Define two helper functions
ismin(x) = (x<min)?min=x:0
ismax(x) = (x>max)?max=x:0
# Initialise the 'global' vars
max=-1e38
min=1e38
plot "Data.txt" u 0:(ismin($3)*ismax($3))
問題は、splot を使用してデータをプロットしようとしていて、うまくいかないことです。
私はこれを試しています:
splot \
'Data.txt' u 2:1:3 with pm3d t '',\
最小値と最大値の決定に関連する部分を削除すると、splot コマンドが機能します。
助言がありますか?