forked from kscience/kmath
update LU docs
This commit is contained in:
parent
c7de0bc4ee
commit
2a29e66daa
@ -62,8 +62,10 @@ public interface LinearOpsTensorAlgebra<T> : TensorPartialDivisionAlgebra<T> {
|
|||||||
* LUP decomposition
|
* LUP decomposition
|
||||||
*
|
*
|
||||||
* Computes the LUP decomposition of a matrix or a batch of matrices.
|
* Computes the LUP decomposition of a matrix or a batch of matrices.
|
||||||
* Given a tensor `input`, return tensors (P, L, U) satisfying `P dot input = L dot U`,
|
* Given a tensor `input`, return tensors (P, L, U) satisfying :
|
||||||
* with `P` being a permutation matrix or batch of matrices,
|
* `P dot input = L dot U` or `input = P dot L dot U`
|
||||||
|
* depending on the implementation, with :
|
||||||
|
* `P` being a permutation matrix or batch of matrices,
|
||||||
* `L` being a lower triangular matrix or batch of matrices,
|
* `L` being a lower triangular matrix or batch of matrices,
|
||||||
* `U` being an upper triangular matrix or batch of matrices.
|
* `U` being an upper triangular matrix or batch of matrices.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user