gnuplot のコマンドを作成しようとしています。列8から33まで、tanhを使用して、以下のコマンドを試しました
plot for [i=1:26] 's0' u 1:(i*0.1+2):(tanh($(7+i))) w l lw 3 palette notitle
うまくいきません。
だから私はインターネットを検索しながら何度か試しました
plot for [i=1:26] 's0' u 1:(i*0.1+2):(tanh("$(7+i)")) w l lw 3 palette notitle
Non-numeric string found where a numeric expression was expected
plot for [i=1:26] 's0' u 1:(i*0.1+2):(tanh("${7+i}") w l lw 3 palette notitle
Non-numeric string found where a numeric expression was expected
plot for [i=1:26] 's0' u 1:(i*0.1+2):("tanh($(7+i))") w l lw 3 palette notitle
warning: Skipping data file with no valid points
しかし、私は解決できませんでした。
これどうやってするの?