simulate.gp(spectralGP)
simulate.gp()所属R语言包:spectralGP
Simulates a process realization from a spectral GP object
模拟过程实现从光谱GP对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulates a process realization by drawing a random draw of coefficients from their prior distribution and updating the process values.
模拟过程中实现他们的先验分布,绘制一个随机抽取的系数更新过程值。
用法----------Usage----------
## S3 method for class 'gp':
simulate(object,...)
参数----------Arguments----------
参数:object
A GP object, created by gp.
一个GP对象,创建的gp。
参数:...
Other arguments.
其他参数。
Details
详细信息----------Details----------
Modifies the coeff and process elements of the object.
修改coeff和process要素的对象。
值----------Value----------
The function modifies the GP object, which is essentially a pointer (an R environment in this case), so NULL is returned.
函数修改的GP对象,这基本上是一个指针(在这种情况下的R环境),所以返回NULL。
(作者)----------Author(s)----------
Christopher Paciorek <a href="mailto:paciorek@alumni.cmu.edu">paciorek@alumni.cmu.edu</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
library(spectralGP)
gp1=gp(128,matern.specdens,c(1,4))
gp2=gp(c(64,64),matern.specdens,c(1,4))
simulate(gp1)
simulate(gp2)
plot(gp1)
plot(gp2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|