matrix inverse help

Started by
1 comment, last by razorjack 15 years, 10 months ago
how to find the inverse of a n x m matrix (in c++). thanks in advance
Advertisement
The same way you would find the inverse of an arbitrary NxM matrix anywhere else. Gauss-Jordan elimination is one option, for example. Google for "matrix inverse" for lots of other options which may be more appropriate to your specific scenario.
You must know that there is an inverse only in case of m = n.

If you like you can read something about "Gauss Algorithm".
My spacesim project blog:http://www.simerge.com/

This topic is closed to new replies.

Advertisement