Gnuplot的图形跳跃

时间:2017-08-08 18:17:13

标签: gnuplot

有没有办法避免在函数1/(2-x)中绘制近似渐近线,例如,没有使用条件绘图?我们的想法是在此基础上绘制迭代函数,并且由于渐近线的变化,使用条件绘图不是一个好的解决方案。

enter image description here

1 个答案:

答案 0 :(得分:3)

  1. 您可以以非常高的采样率绘制with points

    set yrange [-10:10]
    set samples 100000
    plot 1/(2-x) with points
    
  2. enter image description here

    1. 如果奇点发生在x的不同值,您可以在y上使用条件绘图:

      f(x)=1/(2-x)
      set samples 1000
      plot (abs(f(x)) < 10 ? f(x) : 1/0) with lines
      
    2. enter image description here