trapezoid(RCASPAR)
trapezoid()所属R语言包:RCASPAR
A function that calculates the area under a curve based on the Simposon algorithm
一个函数,计算曲线下的面积,根据上Simposon算法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function that calculates the approximate value of the definite integral of a continuous function. In other words, it can help plot the area under the curve of the plotted function between two limits.
一个函数,计算一个连续函数的定积分的近似值。换句话说,它可以帮助在两个极限之间的曲线绘制功能区的图。
用法----------Usage----------
trapezoid(x, y)
参数----------Arguments----------
参数:x
The values to be used along the x-axis while plotting the curve of the function. The x in f(x)=y
用于沿x轴的值而绘制函数曲线。在F(X)= Y
参数:y
The values to be used along the y-axis while plotting the curve of the function. The y in the f(x)=y.
用于沿y轴的值而绘制函数曲线。在F Y(X)= Y。
值----------Value----------
The area under the curve plotted with the x and y values provided as arguments.
绘制曲线下的面积与x和y值作为参数提供。
注意----------Note----------
Using this method is slightly less accurate than using the simpson integration method
使用这种方法是略低于准确的使用辛普森集成方法
作者(S)----------Author(s)----------
Douaa Mugahid
参考文献----------References----------
参见----------See Also----------
simpson
simpson
举例----------Examples----------
x <- seq(0:20)
y <- seq(0, 100, 1)
trapezoid(x,y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|