我想使用 C++ 中的 Lapack 包求解线性方程组。我计划使用这里的例程,即 dgesv来实现它。
这是我的代码:
unsigned short int n=profentries.size();
double **A, *b, *x;
A= new double*[n];
b=new double[n];
x=new double[2];
// Generate the matrices for my equation
for(int i = 0; i < n; ++i)
{
A[i] = new double[2];
}
for(int i=0; i<n; i++)
{
A[i][0]=5;
A[i][1]=1;
b[i]=3;
}
std::cout<< "printing matrix A:"<<std::endl;
for(int i=0; i<n; i++)
{
std::cout<< A[i][0]<<" " <<A[i][1]<<std::endl;
}
// Call the LAPACK solver
x = new double[n];//probably not necessary
dgesv(A, b, 2, x); //wrong result for x!
std::cout<< "printing vector x:"<<std::endl;
/*prints
3
3
but that's wrong, the solution is (0.6, 0)!
*/
for(int i=0; i<2; i++)
{
std::cout<< x[i]<<std::endl;
}
我有以下问题:
dgesv 怎么会用元素 {3, 3} 计算向量 x?解决方案应该是 {0.6, 0}(用 matlab 检查过)。
问候
编辑: dgesv 可能适用于方阵。我下面的解决方案展示了如何使用 dgels 解决超定系统。