1 Star 0 Fork 64

天行有常/goNum

forked from 黑影/goNum 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
InconsistentLSQ.go 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
黑影 提交于 2019-03-01 10:10 . update comments
// InconsistentLSQ
/*
------------------------------------------------------
作者 : Black Ghost
日期 : 2018-12-11
版本 : 0.0.0
------------------------------------------------------
求解矛盾方程组的最小二乘法(Least Square Method)
理论:
对于矛盾方程组Ax=b,即
n
Sum aij*xj = bi (i=1, 2, ..., N)
j=1
rank(A) = n (N > n)
则A'Ax=A'b的唯一解为原矛盾方程组的最小二乘解
参考 李信真, 车刚明, 欧阳洁, 等. 计算方法. 西北工业大学
出版社, 2000, pp 130-135.
------------------------------------------------------
输入 :
A 原方程组系数矩阵,Nxn
b 原方程组值向量,Nx1
输出 :
sol 解向量
err 解出标志:false-未解出或达到步数上限;
true-全部解出
------------------------------------------------------
*/
package goNum
// InconsistentLSQ 求解矛盾方程组的最小二乘法(Least Square Method)
func InconsistentLSQ(A, b Matrix) (Matrix, bool) {
/*
求解矛盾方程组的最小二乘法(Least Square Method)
输入 :
A 原方程组系数矩阵,Nxn
b 原方程组值向量,Nx1
输出 :
sol 解向量
err 解出标志:false-未解出或达到步数上限;
true-全部解出
*/
//判断A和b的行数是否对应
if A.Rows != b.Rows {
panic("Error in goNum.InconsistentLSQ: Rows of A and b are not equal")
}
//求解A'A和A'b
AA := DotPruduct(A.Transpose(), A)
Ab := DotPruduct(A.Transpose(), b)
//转换矩阵为切片
Atemp := Matrix2ToSlices(AA)
btemp := Matrix1ToSlices(Ab)
if (len(Atemp) != A.Columns) || (len(Atemp[0]) != A.Columns) || (len(btemp) != A.Columns) {
panic("Error in goNum.InconsistentLSQ: Matrix to slices error")
}
//求解x向量,采用列主元消去法(LEs_ECPE)
soltemp, err := LEs_ECPE(Atemp, btemp)
if err != true {
panic("Error in goNum.InconsistentLSQ: Solve error")
}
//转换切片为矩阵
sol := Slices1ToMatrix(soltemp)
if sol.Rows != A.Columns {
panic("Error in goNum.InconsistentLSQ: Slice to matrix error")
}
return sol, true
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/simondong1979/goNum.git
git@gitee.com:simondong1979/goNum.git
simondong1979
goNum
goNum
master

搜索帮助