Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.Image.matrixLUDecomposition
Stay organized with collections
Save and categorize content based on your preferences.
Calculates 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 an image with bands named 'L', 'U' and 'P'.
Usage | Returns | Image.matrixLUDecomposition() | Image |
Argument | Type | Details | this: image | Image | Image of 2-D matrices to be decomposed. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["\u003cp\u003eThis operation calculates the LU matrix decomposition of a square input matrix, represented as P×input=L×U.\u003c/p\u003e\n"],["\u003cp\u003eIt returns an image containing three bands: 'L' representing the lower triangular matrix, 'U' representing the upper triangular matrix, and 'P' representing the permutation matrix.\u003c/p\u003e\n"],["\u003cp\u003eThe input for this operation must be a 2-D matrix image.\u003c/p\u003e\n"]]],[],null,["# ee.Image.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 an image with bands named 'L', 'U' and 'P'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------|---------|\n| Image.matrixLUDecomposition`()` | Image |\n\n| Argument | Type | Details |\n|---------------|-------|-----------------------------------------|\n| this: `image` | Image | Image of 2-D matrices to be decomposed. |"]]