如何在 julia 中绘制这些方程式?
How to plot those equations in julia?
我试图绘制它,但我遇到了很多错误
using Winston
p1(Prm)=(Prm-0.25)*min(1.5-Prm,0.50)
p2(Prm)=0.5*(Prm-0.25)*min(1.5-Prm,0.50)
p3(Prm)=(Prm-0.25)*min(2.00-Prm,0.50)
plot(p1,p2,p3)
使用举例
plot(p1,0,10,p2,0,10,p3,0,10)
使用 Winston 绘制函数时,您需要为绘图指定 xrange。上面的示例将为 xrange 0...10.
生成一个图
我试图绘制它,但我遇到了很多错误
using Winston
p1(Prm)=(Prm-0.25)*min(1.5-Prm,0.50)
p2(Prm)=0.5*(Prm-0.25)*min(1.5-Prm,0.50)
p3(Prm)=(Prm-0.25)*min(2.00-Prm,0.50)
plot(p1,p2,p3)
使用举例
plot(p1,0,10,p2,0,10,p3,0,10)
使用 Winston 绘制函数时,您需要为绘图指定 xrange。上面的示例将为 xrange 0...10.
生成一个图