Skip to content

Commit 87074fa

Browse files
Add See Also to lu_factor
1 parent 7d1fd0b commit 87074fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dpnp/linalg/dpnp_iface_linalg.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ def lstsq(a, b, rcond=None):
907907

908908
def lu_factor(a, overwrite_a=False, check_finite=True):
909909
"""
910-
Compute the pivoted LU decomposition of a matrix.
910+
Compute the pivoted LU decomposition of `a` matrix.
911911
912912
The decomposition is::
913913
@@ -949,6 +949,11 @@ def lu_factor(a, overwrite_a=False, check_finite=True):
949949
This function synchronizes in order to validate array elements
950950
when ``check_finite=True``.
951951
952+
See Also
953+
--------
954+
:obj:`dpnp.linalg.lu_solve` : Solve an equation system using
955+
the LU factorization of `a` matrix.
956+
952957
Examples
953958
--------
954959
>>> import dpnp as np

0 commit comments

Comments
 (0)