Search code examples
cnoise-reduction

Singular Value Decomposition simple code in c


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 of SVD code that provide all 3 matrix of S, V and U for me.


Solution

  • You can use the Numerical recipies code for that svdcmp.c reference. Actually in my case I found more accurate the openCV one, but both work fine.