Duyuru:
15 Nisan 2025'ten önce Earth Engine'i kullanmak için kaydedilen tüm ticari olmayan projelerin Earth Engine erişimini sürdürmek için
ticari olmayan uygunluğu doğrulaması gerekir.
ee.Array.matrixQRDecomposition
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Bir matrisin QR ayrışımını, giriş = QR olacak şekilde iki matris (Q ve R) olarak hesaplar. Burada Q ortogonal, R ise üst üçgenseldir. "Q" ve "R" adlı girişleri içeren bir sözlük döndürür.
Kullanım | İadeler |
---|
Array.matrixQRDecomposition() | Sözlük |
Bağımsız Değişken | Tür | Ayrıntılar |
---|
bu: array | Dizi | Ayrıştırılacak dizi. |
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2025-07-26 UTC.
[null,null,["Son güncelleme tarihi: 2025-07-26 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. |"]]