ee.Array.matrixSingularValueDecomposition
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Berechnet die Singular Value Decomposition der Eingabematrix in U×S×V', sodass U und V orthogonal und S diagonal sind. Gibt ein Dictionary mit den Einträgen „U“, „S“ und „V“ zurück.
Nutzung | Ausgabe |
---|
Array.matrixSingularValueDecomposition() | 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\u003eComputes the Singular Value Decomposition (SVD) of an input array, expressing it as a product of three matrices: U, S, and V'.\u003c/p\u003e\n"],["\u003cp\u003eThe result is provided as a dictionary containing the matrices U, S (singular values), and V, where U and V are orthogonal and S is diagonal.\u003c/p\u003e\n"],["\u003cp\u003eThe function \u003ccode\u003ematrixSingularValueDecomposition()\u003c/code\u003e is applied to an array and returns the SVD decomposition in dictionary format.\u003c/p\u003e\n"]]],[],null,["# ee.Array.matrixSingularValueDecomposition\n\nCalculates the Singular Value Decomposition of the input matrix into U×S×V', such that U and V are orthogonal and S is diagonal. Returns a dictionary with entries named 'U', 'S' and 'V'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------|------------|\n| Array.matrixSingularValueDecomposition`()` | Dictionary |\n\n| Argument | Type | Details |\n|---------------|-------|-------------------------|\n| this: `array` | Array | The array to decompose. |"]]