Skip to content

Commit 76aa597

Browse files
Fix deprecations
1 parent b679d63 commit 76aa597

10 files changed

+26
-26
lines changed

src/analysis.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ If `!allMargins`, return only the smallest margin
221221
If `full` return also `fullPhase`
222222
223223
"""
224-
function margin{S<:Real}(sys::LTISystem, w::AbstractVector{S}; full=false, allMargins=false)
224+
function margin(sys::LTISystem, w::AbstractVector{S}; full=false, allMargins=false) where S<:Real
225225
ny, nu = size(sys)
226226
vals = (:wgm, :gm, :wpm, :pm, :fullPhase)
227227
if allMargins
@@ -250,7 +250,7 @@ end
250250
251251
returns frequencies for gain margins, gain margins, frequencies for phase margins, phase margins
252252
"""
253-
function sisomargin{S<:Real}(sys::LTISystem, w::AbstractVector{S}; full=false, allMargins=false)
253+
function sisomargin(sys::LTISystem, w::AbstractVector{S}; full=false, allMargins=false) where S<:Real
254254
ny, nu = size(sys)
255255
if ny !=1 || nu != 1
256256
error("System must be SISO, use `margin` instead")

src/discrete.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ a zero vector is used.
206206
Continuous time systems are discretized before simulation. By default, the
207207
method is chosen based on the smoothness of the input signal. Optionally, the
208208
`method` parameter can be specified as either `:zoh` or `:foh`.""" ->
209-
function lsima{T}(sys::StateSpace, t::AbstractVector, r::AbstractVector{T}, control_signal::Function,state,
210-
x0::VecOrMat=zeros(sys.nx, 1), method::Symbol=:zoh)
209+
function lsima(sys::StateSpace, t::AbstractVector, r::AbstractVector{T}, control_signal::Function,state,
210+
x0::VecOrMat=zeros(sys.nx, 1), method::Symbol=:zoh) where T
211211
ny, nu = size(sys)
212212

213213
nx = sys.nx

src/freqresp.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function sigma(sys::LTISystem, w::AbstractVector)
158158
end
159159
sigma(sys::LTISystem) = sigma(sys, _default_freq_vector(sys, :sigma))
160160

161-
function _default_freq_vector{T<:LTISystem}(systems::Vector{T}, plot::Symbol)
161+
function _default_freq_vector(systems::Vector{T}, plot::Symbol) where T<:LTISystem
162162
min_pt_per_dec = 60
163163
min_pt_total = 200
164164
nsys = length(systems)

src/matrix_comps.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ function balance(A, perm::Bool=true)
412412
return S, P, B
413413
end
414414

415-
function cswap!{T<:Number}(i::Integer, j::Integer, X::StridedMatrix{T})
415+
function cswap!(i::Integer, j::Integer, X::StridedMatrix{T}) where T<:Number
416416
for k = 1:size(X,1)
417417
X[i, k], X[j, k] = X[j, k], X[i, k]
418418
end

src/plotting.jl

+10-10
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ lsimplot
111111
styledict = getStyleSys(si,length(systems))
112112
seriestype := iscontinuous(s) ? :path : :steppost
113113
for i=1:ny
114-
ytext = (ny > 1) ? "Amplitude to: y($i)": "Amplitude"
114+
ytext = (ny > 1) ? "Amplitude to: y($i)" : "Amplitude"
115115
@series begin
116116
xguide --> "Time (s)"
117117
yguide --> ytext
@@ -176,7 +176,7 @@ for (func, title, typ) = ((step, "Step Response", Stepplot), (impulse, "Impulse
176176
style = iscontinuous(s) ? :path : :steppost
177177
ttext = (nu > 1 && i==1) ? title*" from: u($j) " : title
178178
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"
180180
@series begin
181181
seriestype := style
182182
xlabel --> "Time (s)"
@@ -219,8 +219,8 @@ bodeplot
219219
error("All systems must have the same input/output dimensions")
220220
end
221221
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)
224224
nw = length(w)
225225
xticks --> getLogTicks(w)
226226

@@ -250,7 +250,7 @@ bodeplot
250250
end
251251
xguide --> xlab
252252
yguide --> "Magnitude $_PlotScaleStr"
253-
subplot --> s2i((plotphase?(2i-1):i),j)
253+
subplot --> s2i((plotphase ? (2i-1) : i),j)
254254
title --> "Bode plot from: u($j)"
255255
label --> "\$G_\{$(si)\}\$"
256256
linestyle --> styledict[:l]
@@ -558,7 +558,7 @@ nicholsplot
558558

559559
end
560560

561-
nicholsplot{T<:LTISystem}(systems::Vector{T};kwargs...) =
561+
nicholsplot(systems::Vector{T};kwargs...) where {T<:LTISystem} =
562562
nicholsplot(systems, _default_freq_vector(systems, :nyquist);kwargs...)
563563
nicholsplot(sys::LTISystem, args...; kwargs...) = nicholsplot([sys],args...; kwargs...)
564564

@@ -597,7 +597,7 @@ sigmaplot
597597
end
598598
end
599599
end
600-
sigmaplot{T<:LTISystem}(systems::Vector{T}; kwargs...) =
600+
sigmaplot(systems::Vector{T}; kwargs...) where {T<:LTISystem} =
601601
sigmaplot(systems, _default_freq_vector(systems, :sigma); kwargs...)
602602
sigmaplot(sys::LTISystem, args...; kwargs...) = sigmaplot([sys], args...; kwargs...)
603603

@@ -607,7 +607,7 @@ Plot all the amplitude and phase margins of the system(s) `sys`.
607607
A frequency vector `w` can be optionally provided.
608608
609609
`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
611611
if !_same_io_dims(systems...)
612612
error("All systems must have the same input/output dimensions")
613613
end
@@ -657,7 +657,7 @@ function marginplot{T<:LTISystem}(systems::Vector{T}, w::AbstractVector; kwargs.
657657
end
658658
return fig
659659
end
660-
marginplot{T<:LTISystem}(systems::Vector{T}; kwargs...) =
660+
marginplot(systems::Vector{T}; kwargs...) where {T<:LTISystem} =
661661
marginplot(systems, _default_freq_vector(systems, :bode); kwargs...)
662662
marginplot(sys::LTISystem, args...; kwargs...) = marginplot([sys], args...; kwargs...)
663663

@@ -669,7 +669,7 @@ function _same_io_dims(systems::LTISystem...)
669669
return all(s -> s == sizes[1], sizes)
670670
end
671671

672-
function _default_time_data{T<:LTISystem}(systems::Vector{T})
672+
function _default_time_data(systems::Vector{T}) where T<:LTISystem
673673
sample_times = [_default_Ts(i) for i in systems]
674674
Tf = 100*maximum(sample_times)
675675
return sample_times, Tf

src/synthesis.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ feedback(L::TransferFunction) = L/(1+L)
149149
feedback(P1::TransferFunction, P2::TransferFunction) = P1/(1+P1*P2)
150150

151151
#Efficient implementations
152-
function feedback{T<:SisoRational}(L::TransferFunction{T})
152+
function feedback(L::TransferFunction{T}) where T<:SisoRational
153153
if size(L) != (1,1)
154154
error("MIMO TransferFunction inversion isn't implemented yet")
155155
end

src/timeresp.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ If `x0` is not provided, a zero-vector is used.
184184
185185
If `u` is a function, then `u(x,i)` is called to calculate the control signal every iteration. This can be used to provide a control law such as state feedback `u=-Lx` calculated by `lqr`. In this case, an integrer `iters` must be provided that indicates the number of iterations.
186186
""" ->
187-
function ltitr{T}(A::Matrix{T}, B::Matrix{T}, u::AbstractVecOrMat{T},
188-
x0::VecOrMat{T}=zeros(T, size(A, 1)))
187+
function ltitr(A::Matrix{T}, B::Matrix{T}, u::AbstractVecOrMat{T},
188+
x0::VecOrMat{T}=zeros(T, size(A, 1))) where T
189189
n = size(u, 1)
190190
x = Array{T}(size(A, 1), n)
191191
for i=1:n
@@ -196,8 +196,8 @@ function ltitr{T}(A::Matrix{T}, B::Matrix{T}, u::AbstractVecOrMat{T},
196196
end
197197

198198

199-
function ltitr{T}(A::Matrix{T}, B::Matrix{T}, u::Function, t,
200-
x0::VecOrMat{T}=zeros(T, size(A, 1)))
199+
function ltitr(A::Matrix{T}, B::Matrix{T}, u::Function, t,
200+
x0::VecOrMat{T}=zeros(T, size(A, 1))) where T
201201
iters = length(t)
202202
x = Array{T}(size(A, 1), iters)
203203
uout = Array{T}(size(B, 2), iters)

src/types/TransferFunction.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type TransferFunction{S<:SisoTf{T} where T} <: LTISystem
1+
mutable struct TransferFunction{S<:SisoTf{T} where T} <: LTISystem
22
matrix::Matrix{S}
33
Ts::Float64
44
nu::Int
@@ -110,7 +110,7 @@ function isapprox(G1::TransferFunction, G2::TransferFunction; kwargs...)
110110
return true
111111
end
112112

113-
function isapprox{T<:SisoTf, S<:SisoTf}(G1::Array{T}, G2::Array{S}; kwargs...)
113+
function isapprox(G1::Array{T}, G2::Array{S}; kwargs...) where {T<:SisoTf, S<:SisoTf}
114114
reduce(&, [isapprox(G1[i], G2[i]; kwargs...) for i in eachindex(G1)])
115115
end
116116

src/utilities.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ outs = index2range(ind1, ind2)
106106
Helper function to convert indexes with scalars to ranges. Used to avoid dropping dimensions
107107
"""
108108
index2range(ind1, ind2) = (index2range(ind1), index2range(ind2))
109-
index2range{T<:Number}(ind::T) = ind:ind
110-
index2range{T<:AbstractArray}(ind::T) = ind
109+
index2range(ind::T) where {T<:Number} = ind:ind
110+
index2range(ind::T) where {T<:AbstractArray} = ind
111111
index2range(ind::Colon) = ind

test/framework.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function vecarray(T::Type, ny::Int,nx::Int, args::AbstractArray...)
4848
array = reshape(collect(Array{T,1},args),nx,ny)
4949
permutedims(array,[2,1])
5050
end
51-
vecarray{T}(ny::Int,nx::Int, args::AbstractArray{T}...) = vecarray(T, ny, nx, args...)
51+
vecarray(ny::Int,nx::Int, args::AbstractArray{T}...) where {T} = vecarray(T, ny, nx, args...)
5252

5353
function vecarray(ny::Int,nx::Int, args::AbstractArray...)
5454
args2 = promote(args...)

0 commit comments

Comments
 (0)