Underdetermined linear equation system

Started by
1 comment, last by _Frankie 15 years, 10 months ago
I would like to solve an underdetermined linear equation system. I read about the LQ decomposition. Do someone knows, if there is an implementation of the LQ decomposition? I searched but didn't find code (C). Is there another approach to solve an underdetermined linear equation system? Thanks a lot!
Advertisement
A SVD decomposition should get you what you want. You can easily compute the null-space/kernel from it, which is most likely what you are asking for. Link to SVD. The Numerical Recipes in C book (chapter linked of wiki page), also provides code.
Thank you! It works fine!

This topic is closed to new replies.

Advertisement