ee.Array.matrixLUDecomposition
Calculates the LU matrix decomposition such that P×input=L×U, where L is lower triangular (with unit diagonal terms), U is upper triangular and P is a partial pivot permutation matrix. The input matrix must be square. Returns a dictionary with entries named 'L', 'U' and 'P'.
Usage | Returns |
---|
Array.matrixLUDecomposition() | Dictionary |
Argument | Type | Details |
---|
this: array | Array | The array to decompose. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `matrixLUDecomposition()` function calculates the LU decomposition of a square input array."],["It returns a dictionary containing the lower triangular matrix (L), upper triangular matrix (U), and permutation matrix (P)."],["The decomposition satisfies the equation P×input=L×U, where L has unit diagonal terms."],["This function is applicable to any square array and is accessed using `Array.matrixLUDecomposition()`."]]],[]]