我正在尝试在Julia中绘制函数,但始终会出错。我不明白怎么了。 $ \ varphi $的输入和输出是一个标量。我使用过x=1530:1545
并仍然出现错误-有人可以启发我吗?我很困惑。
编辑:
我稍加修改就可以使用它-我改变了
x = 1530:1545
添加了以下两行
y = t.(x)
plot(x,y)
为什么我必须这样做?
答案 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