Julia中的绘图功能

时间:2019-09-17 22:52:21

标签: julia

我正在尝试在Julia中绘制函数,但始终会出错。我不明白怎么了。 $ \ varphi $的输入和输出是一个标量。我使用过x=1530:1545并仍然出现错误-有人可以启发我吗?我很困惑。

我正在使用Julia 0.7。enter image description here

编辑:

我稍加修改就可以使用它-我改变了 x = 1530:1545  添加了以下两行

y = t.(x) plot(x,y)

为什么我必须这样做?

1 个答案:

答案 0 :(得分:1)

PyPlots.jl当前不提供此功能,如果您将来希望拥有此功能,最好的选择是提出问题。 但是,您可以通过Plots.jl并使用PyPlot作为后端来获得该功能。 看起来像这样(我将使用一个简单的函数):

using Plots
pyplot()

start_point = 0
end_point = 10
plot_range = start_point:end_point
plot(sqrt,plot_range) # if you want the function exactly at 0,1,2,3...
plot(plot_range,sqrt) # works the same
plot(sqrt,start_point,end_point) # automatically chooses the interior points