Skip to content

Commit 036e3b4

Browse files
committed
Update to docs
1 parent 19761a2 commit 036e3b4

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

docs/src/lib/constructors.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66
{docs}
77
append
88
c2d
9+
feedback
10+
feedback2dof
911
minreal
1012
parallel
1113
series
1214
sminreal
15+
ss
1316
ss2tf
1417
tf
1518
tfg

docs/src/lib/synthesis.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
care
99
dab
1010
dare
11+
dkalman
1112
dlqr
1213
dlyap
14+
kalman
1315
laglink
1416
leadlink
1517
leadlinkat

docs/src/man/creatingtfs.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Continuous-time transfer function model
4848

4949
The transfer functions created using this method will be of type `TransferFunction{SisoZpk}`.
5050

51-
## tfa - Generalized Representation
52-
If you want to work with transfer functions that are not rational functions, it is possible to use the `tfa` representation
51+
## tfg - Generalized Representation
52+
If you want to work with transfer functions that are not rational functions, it is possible to use the `tfg` representation
5353
```julia
54-
tfa(str::String), tfa(str::Expr)
54+
tfg(str::String), tfg(str::Expr)
5555
```
5656
This function will either convert `str` to an expression or directly accept an `Expr` and create a transfer function.
5757
### Example:
5858
```julia
59-
tfa("1/((s+1)*exp(-sqrt(s)))")
59+
tfg("1/((s+1)*exp(-sqrt(s)))")
6060

6161
## output
6262

src/types/sisogeneralized.jl

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ end
1515
SisoGeneralized(str::AbstractString) = SisoGeneralized(parse(str))
1616

1717
function minreal(sys::SisoGeneralized, eps::Real=sqrt(eps()))
18-
warn("minreal is not implemented for abstract transferfunctions, returning same system")
18+
warn("minreal is not implemented for generalized transferfunctions, returning same system")
1919
sys
2020
end
2121

@@ -29,11 +29,11 @@ Base.convert(::Type{SisoGeneralized}, b::Real) = SisoGeneralized(b)
2929
Base.zero(::Type{SisoGeneralized}) = SisoGeneralized(0)
3030
Base.zero(::SisoGeneralized) = Base.zero(SisoGeneralized)
3131

32-
Base.length(t::SisoGeneralized) = error("length is not implemented for abstract transferfunctions")
33-
Base.num(t::SisoGeneralized) = error("num is not implemented for abstract transferfunctions")
34-
Base.den(t::SisoGeneralized) = error("den is not implemented for abstract transferfunctions")
35-
pole(t::SisoGeneralized) = error("pole is not implemented for abstract transferfunctions")
36-
tzero(t::SisoGeneralized) = error("tzero is not implemented for abstract transferfunctions")
32+
Base.length(t::SisoGeneralized) = error("length is not implemented for generalized transferfunctions")
33+
Base.num(t::SisoGeneralized) = error("num is not implemented for generalized transferfunctions")
34+
Base.den(t::SisoGeneralized) = error("den is not implemented for generalized transferfunctions")
35+
pole(t::SisoGeneralized) = error("pole is not implemented for generalized transferfunctions")
36+
tzero(t::SisoGeneralized) = error("tzero is not implemented for generalized transferfunctions")
3737

3838
#This makes sure that the function can compile once
3939
function _preprocess_for_freqresp(sys::SisoGeneralized)

test/test_generalizedtf.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module TestAbstractTF
1+
module TestGeneralizedTF
22
using CustomTest
33
using ControlSystems
44

0 commit comments

Comments
 (0)