3
Here該OP定義了功能round
,功能floor
在gnuplot
中。幫助floor
說:如何在gnuplot中使用floor功能
gnuplot> help floor
The `floor(x)` function returns the largest integer not greater than its
argument. For complex numbers, `floor` returns the largest integer not
greater than the real part of its argument.
如何使用floor
我所做的:
gnuplot> floor(7.3)
^
invalid command
我可以以某種方式改變,其數量將四捨五入到小數位的數量?
請閱讀你lin的問題k再次。作者將他自己的「round」函數定義爲round(x)= x - floor(x)<0.5? floor(x):ceil(x)'。要用gnuplot測試某些東西,你必須'印刷地板(7)'。 – Christoph
哦,我明白了,謝謝。我將編輯關於'floor'使用的問題。 –