Pls, I need your help. I have a matrix of features X(100*2071 double). Then, I applied svd() on X as in the following code. I read a lot about svd (singular value decompisition) but I can not understand what is the purpose from s as in the code.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
clear; clc;
load X; [ s, ~ ] = svd( X ); D = s( :, 1:20 );%100*20 %%Take only the 20 columns from s
3 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Eigenvalues dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!