You can convert singular values from an SVD decomposition into real components by multiplying the singular values with the corresponding columns of both the left singular vectors (U) and the right singular vectors (V').
Here's an example code snippet in MATLAB:
main.m227 chars7 lines
In the real_components_U
and real_components_V
matrices, you will have the real components resulting from the multiplication.
gistlibby LogSnag