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.
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".
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-07-29 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."]]],["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"]]