We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf065e commit aa4e83eCopy full SHA for aa4e83e
src/genplots.jl
@@ -42,10 +42,10 @@ function getexamples()
42
#Only siso for now
43
nicholsgen() = nicholsplot(tf1,ws)
44
45
- stepgen() = stepplot(sys, ts[end], l=(:dash, 4))
46
- impulsegen() = impulseplot(sys, ts[end], l=:blue)
+ stepgen() = plot(step(sys, ts[end]), l=(:dash, 4))
+ impulsegen() = plot(impulse(sys, ts[end]), l=:blue)
47
L = lqr(sysss.A, sysss.B, [1 0; 0 1], [1 0; 0 1])
48
- lsimgen() = lsimplot(sysss, (x,i)->-L*x, ts; x0=[1;2])
+ lsimgen() = plot(lsim(sysss, (x,i)->-L*x, ts; x0=[1;2]))
49
50
margingen() = marginplot([tf1, tf2], ws)
51
gangoffourgen() = begin
0 commit comments