我正在尝试求解线性方程组:
min || Ax - B ||^2
for t in [0,1]
such that the coefficients x in this equation satisfy the linear equation:
C x = D
该系统尝试拟合一组多项式以在t范围内近似函数F(t)。
这是使用constraint of ordinary least squares求解线性方程的情况。
虽然有已知的封闭形式解决方案,例如Karush-Kuhn-Tucker我正在scipy
/ numpy
中寻找可用于解决此问题的路由。
研究显示了scipy.optimize
模块,其中包括以下功能:
以上建议来自this question和this question。
但是这些条件不具备约束其他线性方程的条件。我可以在scipy
和numpy
中使用什么来做到这一点?
答案 0 :(得分:0)