skip to main |skip to sidebar

2008年1月31日

[AS3]拟柱体数值积分

/**
* 在[a, b]间的拟柱体数值积分。

* @param f 积分函数
* @param a 左界限
* @param b 右界限
* @return [a, b]间的定积分
*/

public static function cylinderInte(f:Function, a:Number, b:Number):Number {
var h:Number = b-a;
return (h/6)*(f(a) + 4*f( (a+b) / 2 ) + f(b));
}

本文链接:https://assnippets.blogspot.com/2008/01/blog-post.html转载请注明出处。

相关文章:

0评论: