如何在gnuplot中将点与曲线连接起来


6

我有一些数据,我想用平滑的曲线连接它们。我不想要线条。我在下面附上一些要点。而不是线条,我想要一条曲线。谁能告诉我如何在gnuplot中这样做?

-111     -0.07  
 -24      0.09  
  62      0.12  
  69     -0.2  
  86     -0.7  
  99      0.74  
 101     -0.69  
 -45      0.2  
 120.403 -0.5848  
 170     -0.353  
 247.891 -0.105295  
 321      0.0925  

Answers:


6

例如,使用以下命令

plot "foo" u 1:2 smooth bezier

其他选项而不是bezier是sbezier,csplines,acsplines。我只是测试它们的数据,看看哪一个最符合我的目的。


4

使用 smooth 的选择 plot,与 csplines

plot "DATA" smooth csplines, "DATA" with points

你不应该使用 bezier 如果你想让曲线穿过这些点,那么它将以最小的自由度进行最佳拟合。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.