How to normalize data ?

4 vues (au cours des 30 derniers jours)
Oman Wisni
Oman Wisni le 16 Déc 2018
Commenté : Oman Wisni le 16 Déc 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

Réponse acceptée

Stephan
Stephan le 16 Déc 2018
x = rand(1,25);
x = (x-mean(x))/std(x)
  3 commentaires
Stephan
Stephan le 16 Déc 2018
Modifié(e) : Stephan le 16 Déc 2018
Which Matlab release do you use? In 2018b the result is a 220x1 vector.
Oman Wisni
Oman Wisni le 16 Déc 2018
I used matlab R2015a

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays 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!

Translated by