Skip to content

Commit e5915d7

Browse files
committed
Removed remains of deprecated function ss2tf
1 parent af7fea0 commit e5915d7

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ A documentation website is available at [http://juliacontrol.github.io/ControlSy
7373

7474
Some of the available commands are:
7575
##### Constructing systems
76-
ss, tf, zpk, ss2tf
76+
ss, tf, zpk
7777
##### Analysis
7878
pole, tzero, norm, hinfnorm, linfnorm, ctrb, obsv, gangoffour, margin, markovparam, damp, dampreport, zpkdata, dcgain, covar, gram, sigma, sisomargin
7979
##### Synthesis

src/ControlSystems.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ export LTISystem,
99
ss,
1010
tf,
1111
zpk,
12-
ss2tf,
1312
LQG,
1413
isproper,
1514
# Linear Algebra

test/test_conversion.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ G2 = tf([1,1,-1],[1,0,-1])
9494
sys3 = ss([0 1;1 0],[0;1],[1 1],0)
9595
G3 = tf([1,1],[1,0,-1])
9696

97-
#Test ss2tf
97+
#Test conversion of StateSpace to TransferFunction
9898
@test tf(sys2) G2 atol=1e-15
9999
@test tf(sys3) G3 atol=1e-15
100100

0 commit comments

Comments
 (0)