armadillo

How do I use LAPACK in a Visual Studio 2008 project using Armadillo

I'm trying to use an open source library http://arma.sourceforge.net for linear algebra calculations. Some of the functions in Armadillo like pinv use LAPACK. I've written a very simple piece of code to use Armadillo to calculate pinv, but it produces a runtime error. This is probably because I do not have LAPACK linker flags in the sln ...

Installing precompiled versions of LAPACK on Windows

I am trying to use the Armadillo matrix library to do matrix calcualtions and it needs BLAS and LAPACK. The Armadillo documentation recommended geting the precompiled versions from here: http://www.stanford.edu/~vkl/code/libs.html There are .lib and .dll files in there. The only problem is I don't know how to get Visual Studio (Express...

calling a function from a DLL protected by Armadillo

I am trying to call functions located in an external DLL from a C++ 6.0 MFC application. I do not have the def or the lib file for this DLL, so I am using LoadLibraryEx/GetProcAddress methodology to access the routines I need to use. I have used DumpBin to get the exported names of the routines I wish to use. When the program executes...

Use Armadillo for VS 2008 project

Hi everybody, i´m so confused. i wanted to use the armadillo "C++ linear algebra library". i downloaded it from there website and tried their example and it works. i understood the stuff with lapack and blas. So now i wanted to use the armadillo lib in my project. i included armadillo and linked the precompiled libraries lapack and bla...