MATLAB: A single line of MATLAB code that computes the mean and standard deviation of a 1‐dimensional array named A of numbers??

averagemeanstandard deviation

I have to right a single line of code that calculates the mean and standard deviation of an array without using the mean or standard deviation command. Help!

Best Answer

m=sum(x)/numel(x);
s=sqrt(sum((x-m).^2)/(numel(x)-1));
?
Best wishes
Torsten.