41 Star 214 Fork 64

黑影/goNum

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FittingTriPoly_test.go 3.48 KB
一键复制 编辑 原始数据 按行查看 历史
黑影 提交于 2019-03-01 10:10 . update comments
// FittingTriPoly_test
/*
------------------------------------------------------
作者 : Black Ghost
日期 : 2018-12-23
版本 : 0.0.0
------------------------------------------------------
基于傅立叶(Fourier)级数的三角多项式拟合
理论:
若f(x)周期为2pi,则存在M(2M<N)阶傅立叶(Fourier)级数
使得N+1个数据对(xi等距分布)的拟合表示为:
a0 M
TM(x) = --- + Sum (aj*cos(jx)+bj*sin(jx))
2 j=1
其中
2 N
aj = ---Sum yk*cos(j*xk), j=0,1,2,...,M
N k=1
2 N
bj = ---Sum yk*sin(j*xk), j=1,2,...,M
N k=1
参考:John H. Mathews and Kurtis D. Fink. Numerical
methods using MATLAB, 4th ed. Pearson
Education, 2004. ss 5.4.1
------------------------------------------------------
输入 :
XY 数据对,nx2,x-y
M 傅立叶级数,< N/2
输出 :
sol 解,(M+1)x2
err 解出标志:false-未解出或达到边界;
true-全部解出
------------------------------------------------------
*/
package goNum_test
import (
"math"
"testing"
"github.com/chfenger/goNum"
)
// FittingTriPoly 基于傅立叶(Fourier)级数的三角多项式拟合
func FittingTriPoly(XY goNum.Matrix, M int) (goNum.Matrix, bool) {
/*
基于傅立叶(Fourier)级数的三角多项式拟合
输入 :
XY 数据对,nx2,x-y
M 傅立叶级数,< N/2
输出 :
sol 解,(M+1)x2
err 解出标志:false-未解出或达到边界;
true-全部解出
*/
//判断维数
if XY.Columns < 2 {
panic("Error in goNum.FittingTriPoly: At least 2 columns of XY needed")
}
N := XY.Rows
//判断M
if float64(M) >= float64(N)/2.0 {
panic("Error in goNum.FittingTriPoly: M is wrong")
}
sol := goNum.ZeroMatrix(M+1, 2) //b0=0.0
var err bool = false
//a0
var a0 float64
for k := 1; k < N; k++ {
// a0 += XY.GetFromMatrix(k, 1) * math.Cos(0.0*XY.GetFromMatrix(k, 0))
a0 += XY.GetFromMatrix(k, 1)
}
sol.SetMatrix(0, 0, 2.0*a0/float64(N))
//aj, bj
for j := 1; j < M+1; j++ {
var aj, bj float64
for k := 1; k < N; k++ {
aj += XY.GetFromMatrix(k, 1) * math.Cos(float64(j)*XY.GetFromMatrix(k, 0))
bj += XY.GetFromMatrix(k, 1) * math.Sin(float64(j)*XY.GetFromMatrix(k, 0))
}
sol.SetMatrix(j, 0, 2.0*aj/float64(N))
sol.SetMatrix(j, 1, 2.0*bj/float64(N))
}
err = true
return sol, err
}
func BenchmarkFittingTriPoly(b *testing.B) {
xy48 := goNum.NewMatrix(12, 2, []float64{
1.0*math.Pi/6.0 - math.Pi, (1.0*math.Pi/6.0 - math.Pi) / 2.0,
2.0*math.Pi/6.0 - math.Pi, (2.0*math.Pi/6.0 - math.Pi) / 2.0,
3.0*math.Pi/6.0 - math.Pi, (3.0*math.Pi/6.0 - math.Pi) / 2.0,
4.0*math.Pi/6.0 - math.Pi, (4.0*math.Pi/6.0 - math.Pi) / 2.0,
5.0*math.Pi/6.0 - math.Pi, (5.0*math.Pi/6.0 - math.Pi) / 2.0,
6.0*math.Pi/6.0 - math.Pi, (6.0*math.Pi/6.0 - math.Pi) / 2.0,
7.0*math.Pi/6.0 - math.Pi, (7.0*math.Pi/6.0 - math.Pi) / 2.0,
8.0*math.Pi/6.0 - math.Pi, (8.0*math.Pi/6.0 - math.Pi) / 2.0,
9.0*math.Pi/6.0 - math.Pi, (9.0*math.Pi/6.0 - math.Pi) / 2.0,
10.0*math.Pi/6.0 - math.Pi, (10.0*math.Pi/6.0 - math.Pi) / 2.0,
11.0*math.Pi/6.0 - math.Pi, (11.0*math.Pi/6.0 - math.Pi) / 2.0,
12.0*math.Pi/6.0 - math.Pi, (12.0*math.Pi/6.0 - math.Pi) / 2.0})
for i := 0; i < b.N; i++ {
goNum.FittingTriPoly(xy48, 5)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/chfenger/goNum.git
[email protected]:chfenger/goNum.git
chfenger
goNum
goNum
master

搜索帮助