Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
Stay organized with collections
Save and categorize content based on your preferences.
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 a dictionary with entries named 'Q' and 'R'.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["Calculates the QR decomposition of an array, expressing it as the product of an orthogonal matrix (Q) and an upper triangular matrix (R)."],["Returns the decomposed matrices Q and R within a dictionary, accessible via the keys 'Q' and 'R', respectively."],["Operates on an input array using the `Array.matrixQRDecomposition()` method, which takes no additional arguments beyond the array itself."]]],["The `matrixQRDecomposition` function computes the QR decomposition of a matrix. It decomposes an input matrix into two matrices: Q and R. Q is an orthogonal matrix, and R is an upper triangular matrix, where input matrix equals the product of Q and R (QR). The function accepts an array as input and returns a dictionary containing the computed Q and R matrices, accessible via the keys 'Q' and 'R'.\n"]]