ee.Array.matrixSingularValueDecomposition
Calculates the Singular Value Decomposition of the input matrix into U×S×V', such that U and V are orthogonal and S is diagonal. Returns a dictionary with entries named 'U', 'S' and 'V'.
Usage | Returns |
---|
Array.matrixSingularValueDecomposition() | 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."],[[["Computes the Singular Value Decomposition (SVD) of an input array, expressing it as a product of three matrices: U, S, and V'."],["The result is provided as a dictionary containing the matrices U, S (singular values), and V, where U and V are orthogonal and S is diagonal."],["The function `matrixSingularValueDecomposition()` is applied to an array and returns the SVD decomposition in dictionary format."]]],[]]