Skip to content

Commit 15188ef

Browse files
authored
fixed typos in docstring
1 parent d373407 commit 15188ef

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

slycot/math.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ def mb02ed(typet: str,T: np.ndarray, B: np.ndarray, n: int, k: int, nrhs: int):
4040
Note: the notation x / y means that x corresponds to
4141
typet = 'R' and y corresponds to typet = 'C'.
4242
T : ndarray
43-
The leading K-by-N*K or N*K-by-K part of this array must contain the first
43+
The leading k-by-n*k or n*k-by-k part of this array must contain the first
4444
block row/column of an s.p.d. block Toeplitz matrix.
4545
B : ndarray
46-
The leading NRHS-by-N*K or N*K-by-NRHS part of this array must contain the
46+
The leading nrhs-by-n*k or n*k-by-nrhs part of this array must contain the
4747
right-hand side matrix B.
4848
n : int
49-
The number of blocks in T. N >= 0.
49+
The number of blocks in T. n >= 0.
5050
k : int
51-
The number of rows/columns in T, equal to the blocksize. K >= 0.
51+
The number of rows/columns in T, equal to the blocksize. k >= 0.
5252
nrhs : int
53-
The number of right-hand sides. NRHS >= 0.
53+
The number of right-hand sides. nrhs >= 0.
5454
5555
Returns
5656
-------
5757
X : ndarray
58-
Leading NRHS-by-N*K / N*K-by-NRHS part of
58+
Leading nrhs-by-n*k / n*k-by-nrhs part of
5959
this array contains the solution matrix X.
6060
T: ndarray
61-
On exit, if no error is thrown and NRHS > 0, then the leading
62-
K-by-N*K / N*K-by-K part of this array contains the last
63-
row / column of the Cholesky factor of inv(T).
61+
On exit, if no error is thrown and nrhs > 0, then the leading
62+
k-by-n*k / n*k-by-k part of this array contains the last
63+
row / column of the Cholesky factor of inv(T).
6464
6565
Warns
6666
-----

0 commit comments

Comments
 (0)