unuran.cmv-class(Runuran)
unuran.cmv-class()所属R语言包:Runuran
Class "unuran.cmv" for Continuous Multivariate Distribution
类连续多变量分布的的“unuran.cmv”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Class unuran.cmv provides an interface to UNU.RAN objects for continuous multivariate distributions. The interface might be changed in future releases. <STRONG>Do not use unnamed arguments!</STRONG>
类unuran.cmv连续多元分布UNU.RAN对象提供了一个接口。在以后的版本中可能会改变的接口。的<STRONG>不要使用未命名的参数</ STRONG>
[Advanced] – Continuous Multivariate Distribution Object.
[高级] - 连续多元分布对象的。
Details
详细信息----------Details----------
Create a new instance of a unuran.cmv object using
创建一个unuran.cmv对象的一个新实例
new ("unuran.cmv", dim=1, pdf=NULL, ll=NULL, ur=NULL, mode=NULL, center=NULL, name=NA).
new ("unuran.cmv", dim=1, pdf=NULL, ll=NULL, ur=NULL, mode=NULL, center=NULL, name=NA)。
dim number of dimensions of the distribution. (integer)
昏暗的尺寸分布。 (整数)
pdf probability density function. (R function)
概率密度函数。 (R功能)
ll,ur lower left and upper right vertex of a rectangular domain of the pdf. The domain is only set if both vertices are not NULL. Otherwise, the domain is unbounded by default.
LL,UR左下角和右上角顶点的矩形区域的pdf。您正在访问的域名设置,如果两个顶点非NULL的。否则,默认情况下,域是无限的。
mode location of the mode. (numeric vector – optional)
的模式的模式位置。 (数字矢量 - 可选)
center point in “typical” region of distribution, e.g. the approximate location of the mode. It is used by several methods to locate the main region of the distribution. If omitted the mode is implicitly used. If the mode is not given either, the origin is used. (numeric vector –
中心点分布的“典型的”区域中,如模式的大致位置。它是用来通过几种方法来定位的主区域的分布。如果省略了mode隐式地使用。如果mode不给予的起源。 (数字矢量 -
name name of distribution. (string)
名名的分布。 (字符串)
The user is responsible that the given informations are consistent. It depends on the chosen method which information must be given / are used. It is important, that the mode is contained in the (closure of the) domain.
所给的信息是一致的,由用户负责。这取决于所选择的方法,该方法的信息,必须给予/使用。重要的是,该模式中包含的(关闭的)域。
(作者)----------Author(s)----------
Josef Leydold and Wolfgang H\"ormann
<a href="mailto:unuran@statmath.wu.ac.at">unuran@statmath.wu.ac.at</a>.
参考文献----------References----------
UNU.RAN User Manual, see http://statmath.wu.ac.at/unuran/.
参见----------See Also----------
unuran.cmv.new, unuran.new, unuran.
unuran.cmv.new,unuran.new,unuran。
实例----------Examples----------
## Create distribution with given PDF[#创建与给定的PDF分布]
mvpdf <- function (x) { exp(-sum(x^2)) }
mvdist <- new("unuran.cmv", dim=2, pdf=mvpdf)
## Restrict domain to rectangle [0,1]x[0,1] and set[#限制为矩形域[0,1]×[0,1],并设置]
## mode to (0,0)[#模式为(0,0)]
mvpdf <- function (x) { exp(-sum(x^2)) }
mvdist <- new("unuran.cmv", dim=2, pdf=mvpdf, ll=c(0,0), ur=c(1,1), mode=c(0,0))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|