Hej guys,
I was wondering if you know any well working Math or Calculation engines written in Objective-C? Found a graphing one using CorePlot already….
Thanks for your help! 🙂
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You might get some use out of David Stes’ CAKit (a computer algebra package), but you’ll have a ton of hacking to do, since Stes is ravingly anti-FoundationKit and wrote the whole thing based on the old, pre-NeXT ICPak API. (Don’t go looking to him for help — you’ll get a world of hurt.)
The key issue to keep in mind is that ICPak was based on Smalltalk and describes more or less the intended function of the class, while FoundationKit class names tend to describe the raw functionality itself; the most useful correlation will probably be OrdCltn -> NSMutableArray; you’ll also have to tweak the memory management to use autorelease. It’s not impossible, but you do have to understand the philosophy that FoundationKit follows.