如何使用pyplot
例如,我正在使用以下
在$ [0,2 \ pi] $上绘制一条移位的sin
曲线
Pkg.add("PyPlot")
using PyPlot
r1 = 0; r2 = 2*pi
N = 100
t = collect(r1:(r2-r1)/N:r2)
fig, ax = subplots()
ax[:plot](t, 1+sin(t),
linewidth=2.0, color="red",linestyle="--",label="constraint")
我希望至少添加一个蓝点。我怎么能这样做?