update LU docs

This commit is contained in:
Roland Grinis 2021-07-10 22:15:33 +01:00
parent c7de0bc4ee
commit 2a29e66daa

View File

@ -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.
* *