行列方程式 A * x = B の x を解きます。image1 と image2 の各バンドのペアで A が過決定の場合、最小二乗解を求めます。image1 または image2 のいずれかに 1 つのバンドしかない場合、そのバンドはもう一方の画像のすべてのバンドに対して使用されます。画像のバンド数が同じで、名前が異なる場合は、自然な順序でペアで使用されます。出力バンドには、2 つの入力のうち長い方の名前が付けられます。長さが同じ場合は、image1 の順序で名前が付けられます。出力ピクセルの型は、入力型の和集合です。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[[["Solves for x in the equation A * x = B using a least-squares approach for matching band pairs between two images."],["Accommodates single-band and multi-band images, pairing bands naturally or against all bands in the other image if necessary."],["Output bands inherit names from the longer input or image1's order for equal lengths, with pixel type determined by the union of input types."],["Accessed via `Image.matrixSolve(image2)`, returning a new Image."]]],["The `matrixSolve` method finds a least-squares solution for `x` in the equation A \\* x = B, where A is derived from `image1` and B from `image2`. It matches bands pairwise, or against all bands of the other image if one has a single band. Bands are matched in natural order if they share a count but not names. Output band names are derived from the longer input, or `image1` if lengths are equal, and output type is the union of input types.\n"]]