我正在使用Numeric Library Bindings for Boost UBlas来解决一个简单问题 线性系统:
#include<boost/numeric/ublas/matrix.hpp>
#include<boost/numeric/ublas/io.hpp>
#include<boost/numeric/bindings/traits/ublas_matrix.hpp>
#include<boost/numeric/bindings/lapack/gesv.hpp>
#include <boost/numeric/bindings/traits/ublas_vector2.hpp>
namespace ublas = boost::numeric::ublas;
namespace lapack= boost::numeric::bindings::lapack;
int main()
{
ublas::matrix<float,ublas::column_major> A(3,3);
ublas::vector<float> b(3);
for(unsigned i=0;i < A.size1();i++)
for(unsigned j =0;j < A.size2();j++)
{
std::cout << "enter element "<<i << j << std::endl;
std::cin >> A(i,j);
}
std::cout << A << std::endl;
b(0) = 21; b(1) = 1; b(2) = 17;
lapack::gesv(A,b);
std::cout << b << std::endl;
return 0;
}
我尝试使用以下命令编译它:
g++ -I/home/foolb/.boost/include/boost-1_38 -I/home/foolb/.boostnumbind/include/boost-numeric-bindings solve_Axb_byhand.cc -o solve_Axb_byhand
但因以下错误而失败:
/media/disk/tmp/ccbd973l.o: In function `boost::numeric::bindings::lapack::detail::gesv(int, int, float*, int, int*, float*, int, int*)':
solve_Axb_byhand2.cc:(.text._ZN5boost7numeric8bindings6lapack6detail4gesvEiiPfiPiS4_iS5_[boost::numeric::bindings::lapack::detail::gesv(int, int, float*, int, int*, float*, int, int*)]+0x59): undefined reference to `sgesv_'
collect2: ld returned 1 exit status
我的代码方法出了什么问题?
答案 0 :(得分:3)
sgesv_是来自LAPACK库的符号,您必须链接到该符号。我想,uBLAS只是绑定它。
我也不知道图书馆的名称:)
答案 1 :(得分:1)
很抱歉,如果这偏离轨道,但我看不到你在g ++命令中的boost库中链接。我看到你包括搜索路径,但是没有明确包含已编译的Boost库本身;像-lboost之类的东西(恐怕我不知道你需要的确切格式,而且很可能取决于位置)。
答案 2 :(得分:1)
与boost数字绑定库链接时,可以使用参数
进行链接
-Lpath/to/lapack -llapack -Lpath/to/blas -lblas -lgfortran
在gcc4中
-Lpath/to/lapack -llapack -Lpath/to/blas -lblas -lg2c
在gcc3中