How to normalize data ?
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Hi, I have data with dimension 1x25, where
x = rand(1,25);
D = size(x,2);
 I'm trying using this code, but the result is NaN. Please help me, to fix my code. Thanks
     for col = 1: D
         x(:,col)=double(x(:,col)-mean(x(:,col)));
     end
     for col = 1: D
         x(:,col)=double(x(:,col)/std(x(:,col)));
     end
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Logical 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!