Skip to content

Commit e760aa2

Browse files
Update lu_solve docs
1 parent 959f5f8 commit e760aa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpnp/scipy/linalg/_decomp_lu.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def lu_solve(lu_and_piv, b, trans=0, overwrite_b=False, check_finite=True):
132132
Parameters
133133
----------
134134
lu, piv : {tuple of dpnp.ndarrays or usm_ndarrays}
135-
LU factorization of matrix `a` (M, M) together with pivot indices.
135+
LU factorization of matrix `a` (..., M, M) together with pivot indices.
136136
b : {(M,), (..., M, K)} {dpnp.ndarray, usm_ndarray}
137137
Right-hand side
138138
trans : {0, 1, 2} , optional
@@ -160,7 +160,7 @@ def lu_solve(lu_and_piv, b, trans=0, overwrite_b=False, check_finite=True):
160160
161161
Returns
162162
-------
163-
x : {(M,), (M, K)} dpnp.ndarray
163+
x : {(M,), (..., M, K)} dpnp.ndarray
164164
Solution to the system
165165
166166
Warning

0 commit comments

Comments
 (0)