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

1 次查看(过去 30 天)
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!

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by