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