R语言
abIseq
位于 Matrix
包(package)。 说明
生成抽象索引向量,即类 "abIndex"
的对象。
abIseq()
被设计成完全像seq
,但产生"abIndex"
向量。
abIseq1()
是它的基本构建块,其中abIseq1(n,m)
对应于n:m
.
当 x
为 1 时,c(x, ...)
将返回 "abIndex"
向量。
用法
abIseq1(from = 1, to = 1)
abIseq (from = 1, to = 1, by = ((to - from)/(length.out - 1)),
length.out = NULL, along.with = NULL)
## S3 method for class 'abIndex'
c(...)
参数
from , to |
序列的起始值和(最大)结束值。 |
by |
number:序列的增量。 |
length.out |
所需的序列长度。非负数,对于 |
along.with |
从此参数的长度中获取长度。 |
... |
一般来说,任意数量的R物体;在这里,当第一个是 |
值
抽象索引向量,即类 "abIndex"
的对象。
例子
stopifnot(identical(-3:20,
as(abIseq1(-3,20), "vector")))
try( ## (arithmetic) not yet implemented
abIseq(1, 50, by = 3)
)
也可以看看
相关用法
- R abIndex-class 抽象索引向量的“abIndex”类
- R all.equal-methods 函数 all.equal() 的矩阵封装方法
- R all-methods 函数 all() 和 any() 的“矩阵”方法
- R atomicVector-class 原子向量的虚拟类“atomicVector”
- R dtrMatrix-class 三角形稠密数值矩阵
- R facmul-methods 乘以矩阵因式分解的因数
- R solve-methods 函数求解矩阵包中的方法
- R updown-methods 更新和降级稀疏 Cholesky 分解
- R bdiag 构建分块对角矩阵
- R printSpMatrix 灵活格式化和打印稀疏矩阵
- R symmetricMatrix-class 包矩阵中对称矩阵的虚拟类
- R boolmatmult-methods 布尔算术矩阵乘积:%&% 和方法
- R ltrMatrix-class 三角密集逻辑矩阵
- R Hilbert 生成希尔伯特矩阵
- R nearPD 最近正定矩阵
- R lsyMatrix-class 对称密集逻辑矩阵
- R CHMfactor-class 稀疏 Cholesky 分解
- R symmpart-methods 矩阵的对称部分和偏斜(对称)部分
- R sparseMatrix 从非零项构建一般稀疏矩阵
- R dgCMatrix-class 压缩、稀疏、面向列的数值矩阵
- R Cholesky-methods Cholesky 分解方法
- R Subassign-methods “[<-”的方法 - 分配给“矩阵”的子集
- R ldenseMatrix-class 密集逻辑矩阵的虚拟类“ldenseMatrix”
- R norm-methods 矩阵范数
- R ngeMatrix-class 一般密集非零模式矩阵的“ngeMatrix”类
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Sequence Generation of "abIndex", Abstract Index Vectors。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。