@@ -92,11 +92,6 @@ def tb01id(n,m,p,maxred,a,b,c,job='A'):
92
92
scale : rank-1 array('d') with bounds (n)
93
93
The scaling factors applied to S. If D(j) is the scaling factor
94
94
applied to row and column j, then scale(j) = D(j), for j = 1,...,n.
95
-
96
- Raises
97
- ------
98
- SlycotParameterError
99
- :info = -i: the i-th argument had an illegal value;
100
95
"""
101
96
hidden = ' (hidden by the wrapper)'
102
97
arg_list = ['job' , 'N' , 'M' , 'P' , 'maxred' , 'A' , 'LDA' + hidden , 'B' ,
@@ -172,11 +167,6 @@ def tb01pd(n, m, p, A, B, C, job='M', equil='S', tol=1e-8, ldwork=None):
172
167
(Ar,Br,Cr) of a minimal, controllable, or observable
173
168
realization for the original system, depending on
174
169
JOB = 'M', JOB = 'C', or JOB = 'O'.
175
-
176
- Raises
177
- ------
178
- SlycotParameterError
179
- :info = -i: the i-th argument had an illegal value
180
170
"""
181
171
hidden = ' (hidden by the wrapper)'
182
172
arg_list = ['job' , 'equil' , 'n' ,'m' ,'p' ,'A' ,'lda' + hidden ,'B' ,'ldb' + hidden ,
@@ -302,8 +292,6 @@ def tb03ad(n,m,p,A,B,C,D,leri,equil='N',tol=0.0,ldwork=None):
302
292
303
293
Raises
304
294
------
305
- SlycotParameterError
306
- :info = -i: the i-th argument had an illegal value;
307
295
SlycotArithmeticError
308
296
:info == 1:
309
297
A singular matrix was encountered during the
@@ -382,11 +370,6 @@ def tb04ad(n,m,p,A,B,C,D,tol1=0.0,tol2=0.0,ldwork=None):
382
370
array of denominator coefficients
383
371
ucoeff : (p, m, max(index)+1) ndarray
384
372
array of numerator coefficients
385
-
386
- Raises
387
- ------
388
- SlycotParameterError
389
- :info = -i: the i-th argument had an illegal value
390
373
"""
391
374
hidden = ' (hidden by the wrapper)'
392
375
arg_list = ['rowcol' ,'n' ,'m' ,'p' ,'A' ,'lda' + hidden ,'B' ,'ldb' + hidden ,'C' ,'ldc' + hidden ,'D' , 'ldd' + hidden ,
@@ -537,8 +520,6 @@ def tb05ad(n, m, p, jomega, A, B, C, job='NG'):
537
520
538
521
Raises
539
522
------
540
- SlycotParameterError
541
- :info = -i: the i-th argument had an illegal value
542
523
SlycotArithmeticError
543
524
:info = 1:
544
525
More than {n30} (30*`n`) iterations were required to isolate the
@@ -666,8 +647,6 @@ def td04ad(rowcol,m,p,index,dcoeff,ucoeff,tol=0.0,ldwork=None):
666
647
667
648
Raises
668
649
------
669
- SlycotParameterError
670
- :info = -i: the i-th argument had an illegal value;
671
650
SlycotArithmeticError
672
651
:info > 0:
673
652
i={info} is the first index of `dcoeff` for which
@@ -805,8 +784,6 @@ def tc04ad(m,p,index,pcoeff,qcoeff,leri,ldwork=None):
805
784
806
785
Raises
807
786
------
808
- SlycotParameterError
809
- :info = -i: the i-th argument had an illegal value
810
787
SlycotArithmeticError
811
788
:info == 1 and leri = 'L':
812
789
P(s) is not row proper
@@ -875,11 +852,6 @@ def tc01od(m,p,indlin,pcoeff,qcoeff,leri):
875
852
qcoeff : (max(m,p), max(m,p), indlim) ndarray
876
853
On exit, the leading m-by-p-by-indlim part of the array contains
877
854
the coefficients of the numerator matrix Q'(s) of the dual system.
878
-
879
- Raises
880
- ------
881
- SlycotParameterError
882
- :info = -i: the i-th argument had an illegal value
883
855
"""
884
856
hidden = ' (hidden by the wrapper)'
885
857
arg_list = ['leri' , 'M' , 'P' , 'indlim' , 'pcoeff' , 'LDPCO1' + hidden ,
@@ -930,11 +902,6 @@ def tf01md(n,m,p,N,A,B,C,D,u,x0):
930
902
Final state, at time n+1.
931
903
y : (p, n) ndarray
932
904
Output signal.
933
-
934
- Raises
935
- ------
936
- SlycotParameterError
937
- :info = -i: the i-th argument had an illegal value
938
905
"""
939
906
hidden = ' (hidden by the wrapper)'
940
907
arg_list = ['n' ,'m' ,'p' ,'ny' ,'A' ,'lda' + hidden ,'B' ,'ldb' + hidden ,
@@ -980,11 +947,6 @@ def tf01rd(n,m,p,N,A,B,C,ldwork=None):
980
947
H : (p, N*m) ndarray
981
948
H[:,(k-1)*m : k*m] contains the k-th Markov parameter,
982
949
for k = 1,2...N.
983
-
984
- Raises
985
- ------
986
- SlycotParameterError
987
- :info = -i: the i-th argument had an illegal value
988
950
"""
989
951
hidden = ' (hidden by the wrapper)'
990
952
arg_list = ['n' ,'m' ,'p' ,'N' ,'A' ,'lda' + hidden ,'B' ,'ldb' + hidden ,'C' ,
@@ -1088,11 +1050,6 @@ def tg01ad(l,n,m,p,A,E,B,C,thresh=0.0,job='A'):
1088
1050
The scaling factors applied to S from right. If Dr(j) is
1089
1051
the scaling factor applied to column j, then
1090
1052
SCALE(j) = Dr(j), for j = 1,...,N.
1091
-
1092
- Raises
1093
- ------
1094
- SlycotParameterError
1095
- :info = -i: the i-th argument had an illegal value
1096
1053
"""
1097
1054
1098
1055
hidden = ' (hidden by the wrapper)'
@@ -1261,11 +1218,6 @@ def tg01fd(l,n,m,p,A,E,B,C,Q=None,Z=None,compq='N',compz='N',joba='N',tol=0.0,ld
1261
1218
matrix A22, and thus also the order of the invertible
1262
1219
upper triangular submatrix Ar.
1263
1220
If JOBA = 'N', then RNKA22 is not referenced.
1264
-
1265
- Raises
1266
- ------
1267
- SlycotParameterError
1268
- :info = -i: the i-th argument had an illegal value
1269
1221
"""
1270
1222
1271
1223
hidden = ' (hidden by the wrapper)'
0 commit comments