I am creating a C program in MacOS and I would like to do Matrix-Vector multiplication. My target platform is a desktop computer with multiple cores. The development environment I have chosen is XCode. I am not married to XCode; I do insist on coding in C (and not Objective-C or C++).
I would like to call BLAS / LAPACK functions. How do I do so?
Apple offers a library called Accelerate. However, the examples I see don't look like C code to me. I'm guessing it's Objective-C, but I don't know. Is there a way to call these functions from a C program? How is it done?
Any help is appreciated.