Gnuplot

gnuplot:計算平方根

  • October 3, 2019

當我打字時,sqrt(4)我得到

^

invalid command

如何用gnuplot計算正實數的平方根?

如果您想gnuplot向您顯示平方根的結果,請通過print()以下任何方式使用該函式:

> print(sqrt(4));

或者

> a=sqrt(4);print(a);

或者

> a=4;print(sqrt(a));

引用自:https://unix.stackexchange.com/questions/544949