You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/descriptor.jl
+4-12Lines changed: 4 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,8 @@ Coprime-factor reduction performs a coprime factorization of the model into \$P(
100
100
101
101
# Arguments:
102
102
- `factorization`: The function to perform the coprime factorization. A non-normalized factorization may be used by passing `RobustAndOptimalControl.DescriptorSystems.glcf`.
103
-
- `kwargs`: Are passed to `DescriptorSystems.gbalmr`
103
+
- `kwargs`: Are passed to `DescriptorSystems.gbalmr`, the docstring of which is reproduced below:
104
+
$(@doc(DescriptorSystems.gbalmr))
104
105
"""
105
106
functionbaltrunc_coprime(sys, info=nothing; residual=false, n=missing, factorization::F= DescriptorSystems.gnlcf, kwargs...) where F
106
107
if info !==nothing&&hasproperty(info, :NM)
@@ -140,25 +141,16 @@ function baltrunc_unstab(sys::LTISystem, info=nothing; residual=false, n=missing
Decompose `sys` into `sys = stab + unstab` where `stab` contains all stable poles and `unstab` contains unstable poles. See $(@doc(DescriptorSystems.gsdec)) for keyword arguments (argument `job` is set to `"stable"` in this function).
0 commit comments