Calculates the QR-decomposition of a matrix into two matrices Q and R such that input = QR, where Q is orthogonal, and R is upper triangular. Returns an image with bands named 'Q' and 'R'.
Usage | Returns |
---|---|
Image.matrixQRDecomposition() | Image |
Argument | Type | Details |
---|---|---|
this: image | Image | Image of 2-D matrices to be decomposed. |
Examples
JavaScript
// Your example goes here!
Python
# Your example goes here!