所以我试图在朱莉娅中使用PyPlot绘制this function 这是我所做的:
using PyPlot
theta0 = 160
theta = range(0,stop=180,length = 50)
m1 = 4
m2 = range(1,stop = 200,length = 50)
d = pi/180
function km(m,th)
((sqrt((m/m1)^2-sin(th*d)^2)+cos(th*d))/(1+(m)))^2
end
PyPlot.plot(m2,km(m2,theta0))
我得到this error
我找不到任何问题,请帮忙。