ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
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 সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\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. |"]]