abIseq(Matrix)
abIseq()所属R语言包:Matrix
Sequence Generation of "abIndex", Abstract Index Vectors
序列生成“abIndex”,摘要索引向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generation of abstract index vectors, i.e., objects of class "abIndex".
代抽象指数向量,即类"abIndex"的对象。
abIseq() is designed to work entirely like seq, but producing "abIndex" vectors.<br> abIseq1() is its basic building block, where abIseq1(n,m) corresponds to n:m.
abIseq()设计完全一样seq工作,但生产"abIndex"向量。参考abIseq1()是它的基本构建块,其中abIseq1(n,m)对应n:m。
c(x, ...) will return an "abIndex" vector, when x is one.
c(x, ...)将返回一个"abIndex"向量,当x。
用法----------Usage----------
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(...)
参数----------Arguments----------
参数:from, to
the starting and (maximal) end value of the sequence.
序列的起点和(最大)的最终值。
参数:by
number: increment of the sequence.
编号:递增的序列。
参数:length.out
desired length of the sequence. A non-negative number, which for seq and seq.int will be rounded up if fractional.
所需序列的长度。一个非负数,seq和seq.int将四舍五入,如果分数。
参数:along.with
take the length from the length of this argument.
从这一论点的长度的长度。
参数:...
in general an arbitrary number of R objects; here, when the first is an "abIndex" vector, these arguments will be concatenated to a new "abIndex" object.
任意数量的R对象;在这里,一般时,首先是一个"abIndex"向量,这些参数将被连接到一个新的"abIndex"对象。
值----------Value----------
An abstract index vector, i.e., object of class "abIndex".
一个抽象的指标向量,即类"abIndex"的对象。
参见----------See Also----------
the class abIndex documentation; rep2abI() for another constructor; rle (base).
类abIndex文件;rep2abI()另一个构造;rle(base)。
举例----------Examples----------
stopifnot(identical(-3:20,
as(abIseq1(-3,20), "vector")))
try( ## (arithmetic) not yet implemented[#(算术)尚未实施]
abIseq(1, 50, by = 3)
)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|