إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Array.matrixQRDecomposition
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تحسب هذه الدالة عملية تحليل المصفوفة إلى مصفوفتين Q وR، بحيث تكون قيمة الإدخال = QR، وتكون Q متعامدة، وR مثلّثة علوية. تعرض هذه الدالة قاموسًا يتضمّن إدخالات باسمَي "Q" و"R".
الاستخدام | المرتجعات |
---|
Array.matrixQRDecomposition() | القاموس |
الوسيطة | النوع | التفاصيل |
---|
هذا: array | مصفوفة | الصفيف المطلوب تقسيمه. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\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. |"]]