ee.Array.matrixQRDecomposition
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
تجزیه QR یک ماتریس را به دو ماتریس Q و R محاسبه می کند به طوری که ورودی = QR، که در آن Q متعامد است، و R مثلث بالایی است. یک فرهنگ لغت را با مدخل هایی با نام "Q" و "R" برمی گرداند.
استفاده | برمی گرداند | Array. matrixQRDecomposition () | فرهنگ لغت |
استدلال | تایپ کنید | جزئیات | این: array | آرایه | آرایه برای تجزیه. |
،تجزیه QR یک ماتریس را به دو ماتریس Q و R محاسبه می کند به طوری که ورودی = QR، که در آن Q متعامد است، و R مثلث بالایی است. یک فرهنگ لغت را با مدخل هایی با نام "Q" و "R" برمی گرداند.
استفاده | برمی گرداند | Array. matrixQRDecomposition () | فرهنگ لغت |
استدلال | تایپ کنید | جزئیات | این: array | آرایه | آرایه برای تجزیه. |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eCalculates the QR decomposition of an array, expressing it as the product of an orthogonal matrix (Q) and an upper triangular matrix (R).\u003c/p\u003e\n"],["\u003cp\u003eReturns the decomposed matrices Q and R within a dictionary, accessible via the keys 'Q' and 'R', respectively.\u003c/p\u003e\n"],["\u003cp\u003eOperates on an input array using the \u003ccode\u003eArray.matrixQRDecomposition()\u003c/code\u003e method, which takes no additional arguments beyond the array itself.\u003c/p\u003e\n"]]],["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"],null,["# ee.Array.matrixQRDecomposition\n\nCalculates 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'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------|------------|\n| Array.matrixQRDecomposition`()` | Dictionary |\n\n| Argument | Type | Details |\n|---------------|-------|-------------------------|\n| this: `array` | Array | The array to decompose. |"]]