volume.ellipsoid(cluster)
volume.ellipsoid()所属R语言包:cluster
Compute the Volume of Planar Object
计算平面对象的音量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the volume of a planar object. This is a generic function and a method for ellipsoid objects.
计算平面物体的体积。这是一个泛型函数和为ellipsoid对象的方法。
用法----------Usage----------
## S3 method for class 'ellipsoid'
volume(object)
参数----------Arguments----------
参数:object
an R object the volume of which is wanted; for the ellipsoid method, an object of that class (see ellipsoidhull or the example below).
R对象,其中的音量被通缉;ellipsoid的方法,这个类的一个对象(见ellipsoidhull或下面的例子)。
值----------Value----------
a number, the volume of the given object.
一个数字,在给定的object量。
参见----------See Also----------
ellipsoidhull for spanning ellipsoid computation.
ellipsoidhull为跨椭计算。
举例----------Examples----------
## example(ellipsoidhull) # which defines `ellipsoid' object <namefoo>[#(例如ellipsoidhull)#定义椭球“的对象<namefoo>]
myEl <- structure(list(cov = rbind(c(3,1),1:2), loc = c(0,0), d2 = 10),
class = "ellipsoid")
volume(myEl)# i.e. "area" here (d = 2)[即“区域”(D = 2)]
myEl # also mentions the "volume"[还提到“量”]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|