5

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

4

1 回答 1

6

C 接口的标头是cblas.hclapack.h。它们是 vecLib 框架的一部分,而 vecLib 框架是 Accelerate 框架的一部分。

于 2011-10-08T04:04:06.393 回答