Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,如何从 gnuplot 中的函数获取数据值?例如我做
plot [0:pi] sin(x)
但我想从这个图中获取数据值,我该怎么做?
您可以使用表格模式。
set samples 100 set table "sin.dat" plot [0:pi] sin(x)