My buddy and I are planning on porting a python app we have to the iOS. We use numpy’s SVD, norm, and pinv functions, which I don’t see how to translate to iOS. I’ve looked over the Accelerate documentation and did not see anything for the pinv (I could have missed it though). What libraries can I use? If I have multiple options, what are the trade-offs between them?
Share
You can run C code in Objective-C, so you can use any C mathematical library.