@@ -159,16 +159,16 @@ def ab04md(type_t, n, m, p, A, B, C, D, alpha=1.0, beta=1.0, ldwork=None):
159
159
p : int
160
160
The number of rows of matrix C. It represents the dimension of
161
161
the output vector. p > 0.
162
- A : input rank-2 array('d') with bounds ( n,n)
162
+ A : ( n,n) ndarray
163
163
The leading n-by-n part of this array must contain the system state
164
164
matrix A.
165
- B : input rank-2 array('d') with bounds ( n,m)
165
+ B : ( n,m) ndarray
166
166
The leading n-by-m part of this array must contain the system input
167
167
matrix B.
168
- C : input rank-2 array('d') with bounds ( p,n)
168
+ C : ( p,n) ndarray
169
169
The leading p-by-n part of this array must contain the system output
170
170
matrix C.
171
- D : input rank-2 array('d') with bounds ( p,m)
171
+ D : ( p,m) ndarray
172
172
The leading p-by-m part of this array must contain the system direct
173
173
transmission matrix D.
174
174
alpha : double
@@ -182,13 +182,13 @@ def ab04md(type_t, n, m, p, A, B, C, D, alpha=1.0, beta=1.0, ldwork=None):
182
182
ldwork >= max(1, n)
183
183
Returns
184
184
-------
185
- At : output rank-2 array('d') with bounds ( n,n)
185
+ At : ( n,n) ndarray
186
186
The state matrix At of the transformed system.
187
- Bt : output rank-2 array('d') with bounds ( n,m)
187
+ Bt : ( n,m) ndarray
188
188
The input matrix Bt of the transformed system.
189
- Ct : output rank-2 array('d') with bounds ( p,n)
189
+ Ct : ( p,n) ndarray
190
190
The output matrix Ct of the transformed system.
191
- Dt : output rank-2 array('d') with bounds ( p,m)
191
+ Dt : ( p,m) ndarray
192
192
The transmission matrix Dt of the transformed system.
193
193
Raises
194
194
------
0 commit comments