Annuncio: tutti i progetti non commerciali registrati per l'utilizzo di Earth Engine prima del
15 aprile 2025 devono
verificare l'idoneità non commerciale per mantenere l'accesso a Earth Engine.
ee.Array.matrixCholeskyDecomposition
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Calcola la decomposizione di Cholesky di una matrice. La decomposizione di Cholesky è una decomposizione nella forma L * L', dove L è una matrice triangolare inferiore. L'input deve essere una matrice definita positiva simmetrica. Restituisce un dizionario con una voce denominata "L".
Utilizzo | Resi |
---|
Array.matrixCholeskyDecomposition() | Dizionario |
Argomento | Tipo | Dettagli |
---|
questo: array | Array | L'array da scomporre. |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-29 UTC.
[null,null,["Ultimo aggiornamento 2025-07-29 UTC."],[[["\u003cp\u003eThis 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.\u003c/p\u003e\n"],["\u003cp\u003eThe decomposition result is returned as a dictionary containing the lower triangular matrix 'L'.\u003c/p\u003e\n"],["\u003cp\u003eIt is specifically designed for array objects and requires the input array to be both symmetric and positive-definite.\u003c/p\u003e\n"],["\u003cp\u003eThe function is invoked using the \u003ccode\u003ematrixCholeskyDecomposition()\u003c/code\u003e method on an array object.\u003c/p\u003e\n"]]],["The `matrixCholeskyDecomposition` function computes the Cholesky decomposition of a symmetric positive-definite matrix. It decomposes the input matrix into a lower triangular matrix (L) and its transpose (L'). The function requires an array as input. It returns a dictionary containing the lower triangular matrix 'L' as its sole entry. This decomposition represents the matrix in the form L * L'.\n"],null,["# ee.Array.matrixCholeskyDecomposition\n\nCalculates 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'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------|------------|\n| Array.matrixCholeskyDecomposition`()` | Dictionary |\n\n| Argument | Type | Details |\n|---------------|-------|-------------------------|\n| this: `array` | Array | The array to decompose. |"]]