@@ -111,7 +111,7 @@ lsimplot
111
111
styledict = getStyleSys (si,length (systems))
112
112
seriestype := iscontinuous (s) ? :path : :steppost
113
113
for i= 1 : ny
114
- ytext = (ny > 1 ) ? " Amplitude to: y($i )" : " Amplitude"
114
+ ytext = (ny > 1 ) ? " Amplitude to: y($i )" : " Amplitude"
115
115
@series begin
116
116
xguide --> " Time (s)"
117
117
yguide --> ytext
@@ -176,7 +176,7 @@ for (func, title, typ) = ((step, "Step Response", Stepplot), (impulse, "Impulse
176
176
style = iscontinuous (s) ? :path : :steppost
177
177
ttext = (nu > 1 && i== 1 ) ? title* " from: u($j ) " : title
178
178
titles[s2i (i,j)] = ttext
179
- ytext = (ny > 1 && j== 1 ) ? " Amplitude to: y($i )" : " Amplitude"
179
+ ytext = (ny > 1 && j== 1 ) ? " Amplitude to: y($i )" : " Amplitude"
180
180
@series begin
181
181
seriestype := style
182
182
xlabel --> " Time (s)"
@@ -219,8 +219,8 @@ bodeplot
219
219
error (" All systems must have the same input/output dimensions" )
220
220
end
221
221
ny, nu = size (systems[1 ])
222
- s2i (i,j) = sub2ind ((nu,(plotphase? 2 : 1 )* ny),j,i)
223
- layout --> ((plotphase? 2 : 1 )* ny,nu)
222
+ s2i (i,j) = sub2ind ((nu,(plotphase ? 2 : 1 )* ny),j,i)
223
+ layout --> ((plotphase ? 2 : 1 )* ny,nu)
224
224
nw = length (w)
225
225
xticks --> getLogTicks (w)
226
226
@@ -250,7 +250,7 @@ bodeplot
250
250
end
251
251
xguide --> xlab
252
252
yguide --> " Magnitude $_PlotScaleStr "
253
- subplot --> s2i ((plotphase? (2 i- 1 ): i),j)
253
+ subplot --> s2i ((plotphase ? (2 i- 1 ) : i),j)
254
254
title --> " Bode plot from: u($j )"
255
255
label --> " \$ G_\{ $(si) \}\$ "
256
256
linestyle --> styledict[:l ]
@@ -558,7 +558,7 @@ nicholsplot
558
558
559
559
end
560
560
561
- nicholsplot {T<:LTISystem} (systems:: Vector{T} ;kwargs... ) =
561
+ nicholsplot (systems:: Vector{T} ;kwargs... ) where {T <: LTISystem } =
562
562
nicholsplot (systems, _default_freq_vector (systems, :nyquist );kwargs... )
563
563
nicholsplot (sys:: LTISystem , args... ; kwargs... ) = nicholsplot ([sys],args... ; kwargs... )
564
564
@@ -597,7 +597,7 @@ sigmaplot
597
597
end
598
598
end
599
599
end
600
- sigmaplot {T<:LTISystem} (systems:: Vector{T} ; kwargs... ) =
600
+ sigmaplot (systems:: Vector{T} ; kwargs... ) where {T <: LTISystem } =
601
601
sigmaplot (systems, _default_freq_vector (systems, :sigma ); kwargs... )
602
602
sigmaplot (sys:: LTISystem , args... ; kwargs... ) = sigmaplot ([sys], args... ; kwargs... )
603
603
@@ -607,7 +607,7 @@ Plot all the amplitude and phase margins of the system(s) `sys`.
607
607
A frequency vector `w` can be optionally provided.
608
608
609
609
`kwargs` is sent as argument to Plots.plot.""" ->
610
- function marginplot {T<:LTISystem} (systems:: Vector{T} , w:: AbstractVector ; kwargs... )
610
+ function marginplot (systems:: Vector{T} , w:: AbstractVector ; kwargs... ) where T <: LTISystem
611
611
if ! _same_io_dims (systems... )
612
612
error (" All systems must have the same input/output dimensions" )
613
613
end
@@ -657,7 +657,7 @@ function marginplot{T<:LTISystem}(systems::Vector{T}, w::AbstractVector; kwargs.
657
657
end
658
658
return fig
659
659
end
660
- marginplot {T<:LTISystem} (systems:: Vector{T} ; kwargs... ) =
660
+ marginplot (systems:: Vector{T} ; kwargs... ) where {T <: LTISystem } =
661
661
marginplot (systems, _default_freq_vector (systems, :bode ); kwargs... )
662
662
marginplot (sys:: LTISystem , args... ; kwargs... ) = marginplot ([sys], args... ; kwargs... )
663
663
@@ -669,7 +669,7 @@ function _same_io_dims(systems::LTISystem...)
669
669
return all (s -> s == sizes[1 ], sizes)
670
670
end
671
671
672
- function _default_time_data {T<:LTISystem} (systems:: Vector{T} )
672
+ function _default_time_data (systems:: Vector{T} ) where T <: LTISystem
673
673
sample_times = [_default_Ts (i) for i in systems]
674
674
Tf = 100 * maximum (sample_times)
675
675
return sample_times, Tf
0 commit comments