I am looking for SINGULAR VALUE Decomposition(SVD) code in C, Would you please help me?

I found many sources but I cannot run them, I am looking for a version svd code that provide 3 matrix of S, V and U for me.

link|improve this question

61% accept rate
feedback

1 Answer

Don't write it yourself, don't deal with trying to build someone else's source. Use a library that provides this function for you. There's probably already one available on your target platform.

Specifically, use the industry-standard LAPACK library or use the GSL or whatever other linear algebra library you want. They all have an SVD implementation.

link|improve this answer
Problem is my teacher asked me to convert my code from C to special ASSEMBLY :(( so do you have any idea now? I am looking for an open source SVD – rima Feb 17 '11 at 22:49
I want to test it on on IC – rima Feb 17 '11 at 22:51
for reducing noise ... – rima Feb 17 '11 at 22:51
Your teacher asked you to write a general-purpose SVD in assembly? That's way over the line for a reasonable assignment. Are you sure you're interpreting it properly? The SVD is generally the most complex algorithm in a linear algebra library, and highly nontrivial to implement, even with a reference implementation available. – Stephen Canon Feb 17 '11 at 22:51
1  
@rima: yes, but how big is the array? Are we talking about a 3x3 matrix or a 4000 x 187 matrix or do you need to be able to handle any size at all? – Stephen Canon Feb 17 '11 at 23:00
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.