إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Array.matrixCholeskyDecomposition
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تحسب هذه الدالة تحليل Cholesky لمصفوفة. التحليل إلى عوامل تشوليسكي هو تحليل إلى عوامل بالشكل L * L' حيث L هي مصفوفة مثلثة سفلية. يجب أن يكون الإدخال مصفوفة متماثلة موجبة محددة. تعرض هذه السمة قاموسًا يتضمّن إدخالاً واحدًا باسم "L".
الاستخدام | المرتجعات |
---|
Array.matrixCholeskyDecomposition() | القاموس |
الوسيطة | النوع | التفاصيل |
---|
هذا: array | مصفوفة | الصفيف المطلوب تقسيمه. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-29 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-29 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eThis function calculates the Cholesky decomposition of a symmetric positive-definite matrix, breaking it down into the form L * L' where L is a lower triangular matrix.\u003c/p\u003e\n"],["\u003cp\u003eThe decomposition result is returned as a dictionary containing the lower triangular matrix 'L'.\u003c/p\u003e\n"],["\u003cp\u003eIt is specifically designed for array objects and requires the input array to be both symmetric and positive-definite.\u003c/p\u003e\n"],["\u003cp\u003eThe function is invoked using the \u003ccode\u003ematrixCholeskyDecomposition()\u003c/code\u003e method on an array object.\u003c/p\u003e\n"]]],["The `matrixCholeskyDecomposition` function computes the Cholesky decomposition of a symmetric positive-definite matrix. It decomposes the input matrix into a lower triangular matrix (L) and its transpose (L'). The function requires an array as input. It returns a dictionary containing the lower triangular matrix 'L' as its sole entry. This decomposition represents the matrix in the form L * L'.\n"],null,["# ee.Array.matrixCholeskyDecomposition\n\nCalculates the Cholesky decomposition of a matrix. The Cholesky decomposition is a decomposition into the form L \\* L' where L is a lower triangular matrix. The input must be a symmetric positive-definite matrix. Returns a dictionary with 1 entry named 'L'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------|------------|\n| Array.matrixCholeskyDecomposition`()` | Dictionary |\n\n| Argument | Type | Details |\n|---------------|-------|-------------------------|\n| this: `array` | Array | The array to decompose. |"]]