ee.Array.matrixCholeskyDecomposition
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Calcule la décomposition de Cholesky d'une matrice. La décomposition de Cholesky est une décomposition de la forme L * L', où L est une matrice triangulaire inférieure. L'entrée doit être une matrice symétrique définie positive. Renvoie un dictionnaire avec une entrée nommée "L".
Utilisation | Renvoie |
---|
Array.matrixCholeskyDecomposition() | Dictionnaire |
Argument | Type | Détails |
---|
ceci : array | Tableau | Tableau à décomposer. |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/29 (UTC).
[null,null,["Dernière mise à jour le 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. |"]]