I would like to use Visual Studio 2008
, programming in C++, but would also like to use LAPACK power, Is there any wrapper so I can use LAPACK
in
LAPACK provides its own C bindings
There are two binding options for each LAPACK function, either a low-level wrapper that just mimics the FORTRAN function call or a higher-level wrapper that takes care of all the workspace memory allocation for you.
Another nice touch is that you can choose whether to use column-major or row-major ordering now.