我必须找到>10^7方程系统的最佳解决方案,其中5个方程各有2个变量(5次测量以找到长序列中误差最小的2个参数)。下面的代码(通常用于曲线拟合)做了我想要的:
#Create_example_Data
n = 100
T_Arm = np.arange(10*n).reshape(-1, 5, 2)
Erg = np.arange(5*n).reshape(-1, 5)
m = np.zeros(n)
c = np.zeros(n)
#Run
for counter in xrange(n):
m[counter], c[counter] = np.linalg.lstsq(T_Arm[counter, :, :],
Erg[counter, :])[0]
不幸的是它太慢了。有什么方法可以显著加快这段代码吗?我试着把它矢量化,但没有成功。使用最后一个解决方案作为初始猜测可能也是一个好主意。使用scipy.optimize.leastsq
并没有提高速度。
你可以使用一个稀疏块矩阵a,它将T_Arm的(5,2)项存储在它的对角线上,并求解AX = b,其中b是由Erg
的堆叠项组成的向量。然后用scipy.sparse. linear对系统进行求解。lsqr (A, b) .
构造A和b时,我使用n=3,以便可视化:
import numpy as np
import scipy
from scipy.sparse import bsr_matrix
n = 3
col = np.hstack(5 * [np.arange(10 * n / 5).reshape(n, 2)]).flatten()
array([ 0., 1., 0., 1., 0., 1., 0., 1., 0., 1., 2., 3., 2.,
3., 2., 3., 2., 3., 2., 3., 4., 5., 4., 5., 4., 5.,
4., 5., 4., 5.])
row = np.tile(np.arange(10 * n / 2), (2, 1)).T.flatten()
array([ 0., 0., 1., 1., 2., 2., 3., 3., 4., 4., 5.,
5., 6., 6., 7., 7., 8., 8., 9., 9., 10., 10.,
11., 11., 12., 12., 13., 13., 14., 14.])
A = bsr_matrix((T_Arm[:n].flatten(), (row, col)), shape=(5 * n, 2 * n))
A.toarray()
array([[ 0, 1, 0, 0, 0, 0],
[ 2, 3, 0, 0, 0, 0],
[ 4, 5, 0, 0, 0, 0],
[ 6, 7, 0, 0, 0, 0],
[ 8, 9, 0, 0, 0, 0],
[ 0, 0, 10, 11, 0, 0],
[ 0, 0, 12, 13, 0, 0],
[ 0, 0, 14, 15, 0, 0],
[ 0, 0, 16, 17, 0, 0],
[ 0, 0, 18, 19, 0, 0],
[ 0, 0, 0, 0, 20, 21],
[ 0, 0, 0, 0, 22, 23],
[ 0, 0, 0, 0, 24, 25],
[ 0, 0, 0, 0, 26, 27],
[ 0, 0, 0, 0, 28, 29]], dtype=int64)
b = Erg[:n].flatten()
然后
scipy.sparse.linalg.lsqr(A, b)[0]
array([ 5.00000000e-01, -1.39548109e-14, 5.00000000e-01,
8.71088538e-16, 5.00000000e-01, 2.35398726e-15])
编辑:A在内存中并不像看起来那么大:这里更多的是块稀疏矩阵