如何在 Julia 中评估后更改 x 的温斯顿绘图范围?
How to change the Winston plot range of x after evaluation in Julia?
using Winston
x=[0:0.1:2pi];
y=sin(x)
plot(x,y)
当我更改 x
的范围时,我得到了与旧范围相同的结果。
您还必须重新计算 y 并生成新图:
using Winston
x=[0:0.1:2pi];
y=sin(x)
plot(x,y)
生成第一个图,然后
x=[0:0.1:4pi]; #Re-define x
y=sin(x) #Calculate new y
plot(x,y) #Generate new plot
将生成一个新情节。
using Winston
x=[0:0.1:2pi];
y=sin(x)
plot(x,y)
当我更改 x
的范围时,我得到了与旧范围相同的结果。
您还必须重新计算 y 并生成新图:
using Winston
x=[0:0.1:2pi];
y=sin(x)
plot(x,y)
生成第一个图,然后
x=[0:0.1:4pi]; #Re-define x
y=sin(x) #Calculate new y
plot(x,y) #Generate new plot
将生成一个新情节。