お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Array.matrixSingularValueDecomposition
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
入力行列の特異値分解を U×S×V' に計算します。ここで、U と V は直交行列、S は対角行列です。'U'、'S'、'V' という名前のエントリを含む辞書を返します。
用途 | 戻り値 |
---|
Array.matrixSingularValueDecomposition() | Dictionary |
引数 | タイプ | 詳細 |
---|
これ: array | 配列 | 分解する配列。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 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. |"]]