ee.Array.matrixCholeskyDecomposition
Calculates the Cholesky decomposition of a matrix. The Cholesky decomposition is a decomposition into the form L * L' where L is a lower triangular matrix. The input must be a symmetric positive-definite matrix. Returns a dictionary with 1 entry named 'L'.
Usage | Returns | Array.matrixCholeskyDecomposition() | 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."],[[["This function calculates the Cholesky decomposition of a symmetric positive-definite matrix, breaking it down into the form L \\* L' where L is a lower triangular matrix."],["The decomposition result is returned as a dictionary containing the lower triangular matrix 'L'."],["It is specifically designed for array objects and requires the input array to be both symmetric and positive-definite."],["The function is invoked using the `matrixCholeskyDecomposition()` method on an array object."]]],[]]