标签: matrix optimization linear-algebra numerical-methods least-squares
我正在尝试实现Non-Negative Least Squares来解决以标准Ax = b矩阵形式表示的线性方程组。
A是具有浮点元素值的(2D)矩阵
P是具有整数元素值的(1D)向量
我遇到了这句话:
Let Aᴾ be A restricted to the variables included in P
这在上下文中是什么意思,我将如何使用MathNet.Numerics类在C#中实现它?