I just spent most of the day learning about range and lambda.
Great work guys, those libraries are awesome. Boost makes c++ into a pretty nice place to be. I've been using serialization, preprocessor, and shared_ptr for awhile now which are also pretty great too.
Hello, Could anyone explain to me why I can't find the numeric bindings for LAPACK, BLAS... ? Or it's no longer in the current boost? If so, why? I have read some programs coded with, for example, boost/numeric/bindings/lapack/computational/ormqr.hpp Sorry if it's a dumb question. Will
On Wed, Apr 6, 2011 at 9:34 AM, Will He
Hello,
Could anyone explain to me why I can't find the numeric bindings for LAPACK, BLAS... ? Or it's no longer in the current boost? If so, why?
I have read some programs coded with, for example, boost/numeric/bindings/lapack/computational/ormqr.hpp
Sorry if it's a dumb question.
Numeric bindings are not "officially" part of stable boost. They still reside in sandbox. To get them you need to check them out from boost sandbox: $ cd tmp $ svn co http://svn.boost.org/svn/boost/sandbox/numeric_bindings boost-numeric_bindings Then when you compile your code, you need to tell the compiler where are the include file for bindings, e.g.: $ g++ -I$HOME/tmp/boost-numeric_bindings ... -o mycode mycode.cpp -llapack -lblas Best, -- Marco
Will
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
On Wed, Apr 06, 2011 at 09:34:19AM +0200, Will He wrote:
Hello, Will
Hi. When posting a new thread to the list, do not reply to an existing message. Doing that will make any sane mail reader think that your message is just a reply and hide it inside the thread of the original message. -- Lars Viklund | zao@acc.umu.se
participants (4)
-
Jake Brownson
-
Lars Viklund
-
sguazt
-
Will He