Adventures in Programming.

May 20, 2007 17:31

LAPACK is a library written in FORTRAN that allows users to create programs that solve matrix equations. For users of C++, there is LAPACK++, a 'wrapper' for LAPACK that translates the FORTRAN code in LAPACK into C++, allowing us to create similar programs in our native language ( Read more... )

Leave a comment

Comments 1

treeviewer June 12 2007, 17:43:29 UTC
Wow, you're having similar problems as me with lapack++.

If the only problem is not being able to find complex.h, then use #include instead of #include
As of the latest version of the standard template library, the h has been dropped.

I unfortunately getting tons of compile errors.

Reply


Leave a comment

Up