Answer the question
In order to leave comments, you need to log in
How to reduce matrix dimension using SVD?
There is a matrix data = NxM (N-features, i.e. rows. M-counts, i.e. columns). For example 100x10. Each count has one hundred attributes.
I need to downsize this matrix to 10x10 because only a few features are significant.
What I do in matlab:
[U, S, V] = svd(data);
newData = S*V' ; // V-транспонированная
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question