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