Gnuplot minimum and maximum boundaries for autoscaling

前端 未结 4 855
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-31 09:05

How can I limit the autoscaling of gnuplot, so that, as example for the y-max, it is at least a certain value and it would autoscale up to fixed \"limit\"?

From loo

4条回答
  •  一生所求
    2020-12-31 09:44

    I don't think it is possible, either you have autoscaling on no-, min- or max-, or both axis i.e.:

    set yrange [FIXED_MIN : FIXED_MAX]
    set yrange [        * : FIXED_MAX]
    set yrange [FIXED_MIN :         *]
    set yrange [        * :          ]
    

    Respectively.

提交回复
热议问题