updateprocess.gp(spectralGP)
updateprocess.gp()所属R语言包:spectralGP
Recalculate process values in a spectral GP object
在光谱GP对象的重新计算过程值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates the process values in a spectral GP object based on the current coefficient values. The process values are calculated by multiplying the coefficient values by the basis matrix, which is done by the inverse FFT.
计算的光谱GP电流的系数的值的基础上的对象的过程中的值。过程值乘以系数的值由基矩阵,这是通过逆FFT计算。
用法----------Usage----------
## S3 method for class 'gp':
updateprocess(object,...)
参数----------Arguments----------
参数:object
A GP object, created by gp.
一个GP对象,创建的gp。
参数:...
Other arguments.
其他参数。
Details
详细信息----------Details----------
Modifies the process values of the object.
修改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))
propose.coeff(gp1)
gp1$coeff[1,1]=0
updateprocess(gp1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|