simpson(RCASPAR)
simpson()所属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----------
simpson(x, y)
参数----------Arguments----------
参数:x
A vector of the values at which the function is to be plotted.
值的功能是绘制矢量。
参数:y
A vector with the values of the function at the corresponding x-values.
在相应的x值的函数值向量。
值----------Value----------
A single numerical value of the approximate area under the curve generated with the x and y values.
一个单一的数值下产生的X和Y值曲线的近似面积。
注意----------Note----------
Compared to the trapezoidal algorithm, this is usually more accurate.
梯形算法相比,这通常是更准确。
作者(S)----------Author(s)----------
Douaa Mugahid
参考文献----------References----------
参见----------See Also----------
trapezoid
trapezoid
举例----------Examples----------
x <- seq(0:20)
y <- seq(0, 100, 1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|