ee.Array.matrixLUDecomposition
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Berechnet die LU-Matrixzerlegung, sodass P×input=L×U gilt. Dabei ist L eine untere Dreiecksmatrix (mit Einheitsdiagonalelementen), U eine obere Dreiecksmatrix und P eine Permutationsmatrix für die partielle Pivotierung. Die Eingabematrix muss quadratisch sein. Gibt ein Dictionary mit den Einträgen „L“, „U“ und „P“ zurück.
Nutzung | Ausgabe |
---|
Array.matrixLUDecomposition() | 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-26 (UTC).
[null,null,["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[[["\u003cp\u003eThe \u003ccode\u003ematrixLUDecomposition()\u003c/code\u003e function calculates the LU decomposition of a square input array.\u003c/p\u003e\n"],["\u003cp\u003eIt returns a dictionary containing the lower triangular matrix (L), upper triangular matrix (U), and permutation matrix (P).\u003c/p\u003e\n"],["\u003cp\u003eThe decomposition satisfies the equation P×input=L×U, where L has unit diagonal terms.\u003c/p\u003e\n"],["\u003cp\u003eThis function is applicable to any square array and is accessed using \u003ccode\u003eArray.matrixLUDecomposition()\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# ee.Array.matrixLUDecomposition\n\nCalculates the LU matrix decomposition such that P×input=L×U, where L is lower triangular (with unit diagonal terms), U is upper triangular and P is a partial pivot permutation matrix. The input matrix must be square. Returns a dictionary with entries named 'L', 'U' and 'P'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------|------------|\n| Array.matrixLUDecomposition`()` | Dictionary |\n\n| Argument | Type | Details |\n|---------------|-------|-------------------------|\n| this: `array` | Array | The array to decompose. |"]]