dgCMatrix-class(Matrix)
dgCMatrix-class()所属R语言包:Matrix
Compressed, sparse, column-oriented numeric matrices
压缩,稀疏,面向列的数字矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The dgCMatrix class is a class of sparse numeric matrices in the compressed, sparse, column-oriented format. In this implementation the non-zero elements in the columns are sorted into increasing row order. dgCMatrix is the “standard” class for sparse numeric matrices in the Matrix package.
dgCMatrix类是一类稀疏的数字矩阵压缩,稀疏,面向列的格式。在此实现在列的非零元素增加行顺序排序。 dgCMatrix是Matrix包类稀疏的数字矩阵“标准”。
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("dgCMatrix", ...) or often more easily via Matrix(*, sparse = TRUE).
对象可以创建的形式电话new("dgCMatrix", ...)或往往更容易通过Matrix(*, sparse = TRUE)。
插槽----------Slots----------
x: Object of class "numeric" - the non-zero
x类"numeric"对象 - 非零
... all other slots are inherited from the superclass "CsparseMatrix".
...其他所有插槽都继承自父类的"CsparseMatrix"。
方法----------Methods----------
coerce signature(from = "matrix", to = "dgCMatrix")
强制signature(from = "matrix", to = "dgCMatrix")
coerce signature(from = "dgCMatrix", to = "matrix")
强制signature(from = "dgCMatrix", to = "matrix")
coerce signature(from = "dgCMatrix", to = "dgTMatrix")
强制signature(from = "dgCMatrix", to = "dgTMatrix")
crossprod signature(x = "dgCMatrix", y = "missing")
crossprodsignature(x = "dgCMatrix", y = "missing")
crossprod signature(x = "dgCMatrix", y = "matrix"): ...
crossprodsignature(x = "dgCMatrix", y = "matrix")...
crossprod signature(x = "dgCMatrix", y = "numeric"): ...
crossprodsignature(x = "dgCMatrix", y = "numeric")...
diag signature(x = "dgCMatrix"): returns the diagonal
诊断signature(x = "dgCMatrix"):返回对角线
dim signature(x = "dgCMatrix"): returns the dimensions
朦胧signature(x = "dgCMatrix"):返回的尺寸
image signature(x = "dgCMatrix"): plots an image of
图像signature(x = "dgCMatrix"):图图像
lu signature(x = "dgCMatrix"): computes the LU
鲁signature(x = "dgCMatrix"):计算陆
参见----------See Also----------
Classes dsCMatrix, dtCMatrix, lu
类dsCMatrix,dtCMatrix,lu
举例----------Examples----------
(m <- Matrix(c(0,0,2:0), 3,5))
str(m)
m[,1]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|