A single line of MATLAB code that computes the mean and standard deviation of a 1‐dimensional array named A of numbers???
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dominic Lira
am 6 Nov. 2015
Beantwortet: Torsten
am 6 Nov. 2015
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!
0 Kommentare
Akzeptierte Antwort
Torsten
am 6 Nov. 2015
m=sum(x)/numel(x);
s=sqrt(sum((x-m).^2)/(numel(x)-1));
?
Best wishes
Torsten.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NaNs 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!