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

 Accepted Answer

x = rand(1,25);
x = (x-mean(x))/std(x)

3 Comments

thanks for the answer sir, but when I use in matrik with size 220x25 dimension, I get error like this :
x = rand(220,25);
x = (x-mean(x))/std(x)
Error using -
Matrix dimensions must agree.
Stephan
Stephan on 16 Dec 2018
Edited: Stephan on 16 Dec 2018
Which Matlab release do you use? In 2018b the result is a 220x1 vector.
I used matlab R2015a

Sign in to comment.

More Answers (0)

Asked:

on 16 Dec 2018

Commented:

on 16 Dec 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!