ee.Array.matrixCholeskyDecomposition
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Berechnet die Cholesky-Zerlegung einer Matrix. Die Cholesky-Zerlegung ist eine Zerlegung in der Form L * L', wobei L eine untere Dreiecksmatrix ist. Die Eingabe muss eine symmetrische, positiv definite Matrix sein. Gibt ein Wörterbuch mit einem Eintrag namens „L“ zurück.
Nutzung | Ausgabe |
---|
Array.matrixCholeskyDecomposition() | Wörterbuch |
Argument | Typ | Details |
---|
So gehts: array | Array | Das Array, das zerlegt werden soll. |
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2025-07-29 (UTC).
[null,null,["Zuletzt aktualisiert: 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. |"]]