Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using BLAS or LAPACK with Xcode

I'm looking for a good guide on how to incorporate BLAS or LAPACK functions into my Objective C Program developed through Xcode. The only sources I can find online of programs in BLAS/LAPACK are written in Fortran - this is confusing. How does one make use of BLAS/LAPACK and still code in Objective C? Are there any online examples/guides? I want to be able to perform matrix operations where elements of the matrix have complex values.

Cheers,

Shaddy

like image 419
Shaddy Avatar asked Oct 07 '11 21:10

Shaddy


1 Answers

the headers for the C interfaces are cblas.h and clapack.h. they are part of the vecLib framework, which is part of the Accelerate framework.

like image 168
justin Avatar answered Oct 23 '22 09:10

justin