seqMpfr(Rmpfr)
seqMpfr()所属R语言包:Rmpfr
"mpfr" Sequence Generation
“MPFR”序列生成
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generate "regular", i.e., arithmetic sequences. This is in lieu of methods for seq (dispatching on all three of from, to, and by.
生成“常规”,即等差数列。这是代替的方法seq(调度在所有三个from,to和by。“
用法----------Usage----------
seqMpfr(from = 1, to = 1, by = ((to - from)/(length.out - 1)),
length.out = NULL, along.with = NULL, ...)
参数----------Arguments----------
参数:from, to
the starting and (maximal) end value (numeric or "mpfr") of the sequence.
的起始和结束值(最大)(数值或"mpfr")的序列。
参数:by
number (numeric or "mpfr"): increment of the sequence.
号(数字或"mpfr"):增量的序列。
参数:length.out
desired length of the sequence. A non-negative number, which will be rounded up if fractional.
所希望的长度的序列。非负数,这将是圆形的,如果分数。
参数:along.with
take the length from the length of this argument.
这种说法的长度的长度。
参数:...
arguments passed to or from methods.
传递的参数或方法。
Details
详细信息----------Details----------
see seq (default method in package base), whose semantic we want to replicate (almost).
看到seq(默认的方法包base),其语义,我们要复制的(几乎)。
值----------Value----------
a "vector" of class "mpfr", when one of the first three arguments was.
类"mpfr",当一个人的前三个参数是一个媒介的。
(作者)----------Author(s)----------
Martin Maechler
参见----------See Also----------
The documentation of the base function seq; mpfr
base功能的文档seqmpfr
实例----------Examples----------
seqMpfr(0, 1, by = mpfr(0.25, prec=88))
seqMpfr(7, 3) # -> default prec.[ - >默认PREC。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|