當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R ntrMatrix-class 三角密集邏輯矩陣


R語言 ntrMatrix-class 位於 Matrix 包(package)。

說明

"ntrMatrix" 類是非壓縮存儲中的三角形密集邏輯矩陣類。除了打包存儲之外,"ntpMatrix" 類是相同的。

插槽

x

"logical" 的對象。構成矩陣的邏輯值,按列優先順序存儲。

uplo

"character" 的對象。對於上三角,必須是"U",對於下三角,必須是"L"。

diag

"character" 的對象。必須是 "U" ,單位為三角形(對角線全為 1),或 "N" ;請參閱triangularMatrix

DimDimnames

維度(長度為 2 "integer" )和相應的名稱(或 NULL ),請參閱 Matrix 類。

factors

"list" 的對象。已為矩陣計算的分解的命名列表。

擴展

"ntrMatrix"擴展類"ngeMatrix",直接,而
"ntpMatrix"擴展類"ndenseMatrix", 直接地。

兩者都直接擴展類 "triangularMatrix" ,並且類 "denseMatrix""lMatrix" 等間接擴展類 showClass("nsyMatrix") ,例如,用於詳細信息。

方法

目前,主要是t()和強製方法(對於as(.);使用例如showMethods(class="ntrMatrix")了解詳細信息。

例子


showClass("ntrMatrix")

str(new("ntpMatrix"))
(nutr <- as(upper.tri(matrix(, 4, 4)), "ndenseMatrix"))
str(nutp <- pack(nutr)) # packed matrix: only 10 = 4*(4+1)/2 entries
!nutp # the logical negation (is *not* logical triangular !)
## but this one is:
stopifnot(all.equal(nutp, pack(!!nutp)))

也可以看看

ngeMatrixMatrix;函數t

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Triangular Dense Logical Matrices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。