matrix.csc-class(SparseM)
matrix.csc-class()所属R语言包:SparseM
Class "matrix.csc"
类“matrix.csc”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A new class for sparse matrices stored in compressed sparse column format
一类新的存储稀疏矩阵的压缩稀疏列格式
类对象----------Objects from the Class----------
Objects can be created by calls of the form new("matrix.csc", ...).
可以创建对象通过调用的形式new("matrix.csc", ...)。
插槽----------Slots----------
ra: Object of class numeric, a real array of nnz elements containing the non-zero elements of A, stored in column order. Thus, if i<j, all elements of column i precede elements from column j. The order of elements
ra类的对象numeric,NNZ元素非零元素的一个真正的数组,存储在列的顺序。因此,如果I <J,第i列第j列元素之前的所有元素。元素的顺序
ja: Object of class integer, an integer array of nnz elements containing the row
ja:对象的类integer,一个整数数组NNZ元素包含行
ia: Object of class integer, an integer array of n+1 elements containing pointers to the beginning of each column in the arrays "ra" and "ja". Thus "ia[i]" indicates the position in the arrays "ra" and "ja" where the ith column begins. The last, (n+1)st, element of "ia" indicates where the n+1 column would start, if it existed.
ia:对象的类integer,一个整数数组中的n +1个元素阵列的Ra“和”JA“中的每一列包含指针的开始。因此IA [i]的表示的阵列岭和ja的,其中开始的第i列中的位置。最后,(N +1)日,元素的“IA”表示,其中N +1列开始,如果它存在。
dimension: Object of class integer, dimension of the matrix
dimension:对象类integer,维数的矩阵
方法----------Methods----------
as.matrix.csr signature(x = "matrix.csc"): ...
as.matrix.csr signature(x = "matrix.csc")...
as.matrix.ssc signature(x = "matrix.csc"): ...
as.matrix.ssc signature(x = "matrix.csc")...
as.matrix.ssr signature(x = "matrix.csc"): ...
as.matrix.ssr signature(x = "matrix.csc")...
as.matrix signature(x = "matrix.csc"): ...
as.matrix signature(x = "matrix.csc")...
chol signature(x = "matrix.csc"): ...
哲signature(x = "matrix.csc"):...
dim signature(x = "matrix.csc"): ...
昏暗的signature(x = "matrix.csc"):...
t signature(x = "matrix.csc"): ...
Tsignature(x = "matrix.csc"):...
参见----------See Also----------
matrix.csr-class
matrix.csr-class
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|