How to normalize data ?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Oman Wisni
 am 16 Dez. 2018
  
    
    
    
    
    Kommentiert: Oman Wisni
 am 16 Dez. 2018
            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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Logical finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

