행렬 방정식 A * x = B에서 x를 구합니다. image1과 image2의 일치하는 각 밴드 쌍에 대해 A가 과도하게 결정된 경우 최소 제곱 해를 찾습니다. image1 또는 image2에 밴드가 하나만 있는 경우 다른 이미지의 모든 밴드에 대해 사용됩니다. 이미지의 밴드 수가 동일하지만 이름이 동일하지 않은 경우 자연스러운 순서로 쌍을 이루어 사용됩니다. 출력 밴드는 두 입력 중 더 긴 입력의 이름을 따서 지정되며, 길이가 같은 경우 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"]]