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

link|improve this question

40% accept rate
1  
See this similar question: stackoverflow.com/questions/7683080/… – codehippo Oct 7 '11 at 21:15
I know that GNU scientific library (in C++) has interfaces to LAPACK and BLAS. Try looking at their code. I dont know much about objective C but that might be a start. – I J Oct 7 '11 at 21:26
1  
CBLAS is part of the Accelerate framework that ships on every Mac and iOS device. – Dave DeLong Oct 7 '11 at 22:10
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.