代码拉取完成,页面将自动刷新
同步操作将从 黑影/goNum 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// IntegralCompositeNewtonCotes_test
/*
------------------------------------------------------
作者 : Black Ghost
日期 : 2018-12-12
版本 : 0.0.0
------------------------------------------------------
1-8级复化Newton-Cotes求积分公式
理论:
对于积分
b n
|f(x)dx ~= Sum Ak*f(xk)
a k=0
(n)
Ak = (b-a)C
k
(n) (-1)^(n-k) n
C = ------------ |t(t-1)(t-2)...(t-(k-1))(t-(k+1))...(t-n)dt
k k!(n-k)!n 0
特别的,n=1为复化梯形公式;
n=2为复化Simpson(辛浦生)公式;
n=4为复化Cotes(科特斯)公式
将区间[a, b]等分为Nn个子区间,每个子区间上使用Newton-Cotes求积分公式
参考 李信真, 车刚明, 欧阳洁, 等. 计算方法. 西北工业大学
出版社, 2000, pp 155-156.
------------------------------------------------------
输入 :
fun 被积分函数
a, b 积分范围
n Newton-Cotes公式级数
Nn 子区间数
输出 :
sol 解
err 解出标志:false-未解出或达到步数上限;
true-全部解出
------------------------------------------------------
注意 :
由于误差得不到有效控制,稳定性无法保证,故而并不是n值越
大越好,实际应用中很少使用n值较大的Newton-Cotes公式
------------------------------------------------------
*/
package goNum_test
import (
"testing"
"github.com/chfenger/goNum"
)
// IntegralCompositeNewtonCotes 1-8级复化Newton-Cotes求积分公式
func IntegralCompositeNewtonCotes(fun func(float64) float64, a, b float64, n, Nn int) (float64, bool) {
/*
1-8级复化Newton-Cotes求积分公式
输入 :
fun 被积分函数
a, b 积分范围
n Newton-Cotes公式级数
Nn 子区间数
输出 :
sol 解
err 解出标志:false-未解出或达到步数上限;
true-全部解出
*/
//判断n
if (n < 1) || (n > 8) {
panic("Error in goNum.IntegralNewtonCotes: n is not correct")
}
//判断a, b
if a == b {
return 0.0, true
}
//判断Nn
if Nn < 1 {
panic("Error in goNum.IntegralNewtonCotes: Nn is less than one")
} else if Nn == 1 {
return goNum.IntegralNewtonCotes(fun, a, b, n)
}
var sol float64
var err bool = false
//子区间长度
Hh := (b - a) / float64(Nn)
//调用IntegralNewtonCotes循环累加
for i := 1; i < Nn+1; i++ {
soltemp, errtemp := goNum.IntegralNewtonCotes(fun, a+Hh*float64(i-1), a+Hh*float64(i), n)
if errtemp != true {
panic("Error in goNum.IntegralNewtonCotes: Error in calling IntegralNewtonCotes")
}
sol += soltemp
}
err = true
return sol, err
}
func fun35(x float64) float64 {
return 4.0 / (1 + x*x)
}
func BenchmarkIntegralCompositeNewtonCotes(b *testing.B) {
for i := 0; i < b.N; i++ {
// goNum.IntegralCompositeNewtonCotes(fun35, 0.0, 1.0, 1, 8) //3.141592653...
// goNum.IntegralCompositeNewtonCotes(fun35, 0.0, 1.0, 2, 8)
goNum.IntegralCompositeNewtonCotes(fun35, 0.0, 1.0, 4, 8)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。