Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] CGAL::Lapack_svd::solve(Matrix& M, Vector& B)

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] CGAL::Lapack_svd::solve(Matrix& M, Vector& B)


Chronological Thread 
  • From: "Sebastien Loriot (GeometryFactory)" <>
  • To:
  • Subject: Re: [cgal-discuss] CGAL::Lapack_svd::solve(Matrix& M, Vector& B)
  • Date: Mon, 25 Oct 2010 16:15:41 +0200


wrote:
Hi,
I'm experiencing an error when calling the function
CGAL::Lapack_svd::solve(Matrix& M, Vector& B) in Linear_algebra_lapack.h
(_dgelss is undefined symbol ). I suppose I'm failing linking the Lapack
library, could anyone help me?
Thanks!



try adding in your CMakeLists.txt


find_package(LAPACK)
if(LAPACK_FOUND)
include( ${LAPACK_USE_FILE} )
//your cmake commands
//....
endif()


S.



Archive powered by MHonArc 2.6.16.

Top of Page