views:

55

answers:

1

I need to write an app in Obj-C which solves systems of linear equations (the equations are entered by the user). What is the algorithm for this?

Thanks in advance!

+1  A: 

You could write a thin Objective-C wrapper on top of (c)lapack. See Computational Routines for Linear Equations in LAPACK

clapack should already be available in the iPhone, as part of the Accelerate framework (Accelerate contains vecLib which in turns contains clapack).

diciu
Thank you! I'll try to do this with clapack
Knodel