symmetricMatrix-class(Matrix)
symmetricMatrix-class()所属R语言包:Matrix
Virtual Class of Symmetric Matrices in package:Matrix
包中的对称矩阵:矩阵的虚拟教室
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The virtual class of symmetric matrices, "symmetricMatrix", from the package Matrix contains numeric and logical, dense and sparse matrices, e.g., see the examples.
对称矩阵的虚拟课堂,"symmetricMatrix",从包Matrix包含数字和逻辑,密集和稀疏矩阵,例如,看到的例子。
The main use is in methods (and C functions) that can deal with all symmetric matrices.
主要用途是可以对付所有对称矩阵的方法(C函数)。
插槽----------Slots----------
uplo: Object of class "character". Must be
uplo类"character"的对象。必须
Dim, Dimnames: The dimension (a length-2 "integer") and corresponding names (or NULL),
Dim, Dimnames:尺寸(长度-2"integer")和(或NULL)相应的名称,
factors: a list of matrix factorizations, also from the
factors:矩阵分解的列表,也可以从
延伸----------Extends----------
Class "Matrix", directly.
类"Matrix",直接。
方法----------Methods----------
There's a C function symmetricMatrix_validity() called by the internal validity checking functions.
还有一个C函数symmetricMatrix_validity()称为内部有效性检查功能。
参见----------See Also----------
Classes triangularMatrix, and, e.g., dsyMatrix for numeric dense matrices, or lsCMatrix for a logical sparse matrix class.
类triangularMatrix,,例如,dsyMatrix数字密集矩阵,或lsCMatrix逻辑稀疏矩阵类。
举例----------Examples----------
showClass("symmetricMatrix")
## The names of direct subclasses:[#直接子类的名称:]
scl <- getClass("symmetricMatrix")@subclasses
directly <- sapply(lapply(scl, slot, "by"), length) == 0
names(scl)[directly]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|