Skip to content

Commit 3062de5

Browse files
bnavigatorroryyorke
authored andcommitted
sg03ad N is not hidden
1 parent b8f3dca commit 3062de5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

slycot/synthesis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1984,6 +1984,8 @@ def sg03ad(dico,job,fact,trans,uplo,N,A,E,Q,Z,X,ldwork=None):
19841984
= 'L': Only the lower triangle is needed on input;
19851985
= 'U': Only the upper triangle is needed on input.
19861986
1987+
N : The order of the matrix A. N >= 0.
1988+
19871989
A : input rank-2 array('d') with bounds (n,n)
19881990
On entry, if FACT = 'F', then the leading N-by-N upper
19891991
Hessenberg part of this array must contain the
@@ -2143,7 +2145,7 @@ def sg03ad(dico,job,fact,trans,uplo,N,A,E,Q,Z,X,ldwork=None):
21432145
"""
21442146

21452147
hidden = ' (hidden by the wrapper)'
2146-
arg_list = ['dico', 'job', 'fact', 'trans', 'uplo', 'N'+hidden, 'A', 'LDA'+hidden, 'E',
2148+
arg_list = ['dico', 'job', 'fact', 'trans', 'uplo', 'N', 'A', 'LDA'+hidden, 'E',
21472149
'LDE'+hidden, 'Q', 'LDQ'+hidden, 'Z', 'LDZ'+hidden, 'X', 'LDX'+hidden,
21482150
'scale', 'sep', 'ferr', 'alphar', 'alphai', 'beta', 'IWORK'+hidden,
21492151
'DWORK'+hidden, 'ldwork', 'info' ]

0 commit comments

Comments
 (0)