ry_bing(rstiefel)
ry_bing()所属R语言包:rstiefel
Helper Function for Sampling a Bingham-distributed Vector
采样宾汉分布向量的辅助函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
C interface to perform a Gibbs update of y with invariant distribution proportional to exp( sum(l*y^2) with respect to the uniform measure on the sphere.
C接口来执行的Gibbs更新y不变分布比例exp( sum(l*y^2) 相对于在球体上的均匀的措施。
用法----------Usage----------
ry_bing(y, l)
参数----------Arguments----------
参数:y
a normal vector.
的法线矢量。
参数:l
a vector.
一个向量。
值----------Value----------
a normal vector.
的法线矢量。
(作者)----------Author(s)----------
Peter Hoff
参考文献----------References----------
实例----------Examples----------
## The function is currently defined as[#功能目前被定义为]
function (y, l)
{
.C("ry_bing", y = as.double(y), l = as.double(l), n = as.integer(length(y)))$y
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|