A single line of MATLAB code that computes the mean and standard deviation of a 1‐dimensional array named A of numbers???
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dominic Lira
el 6 de Nov. de 2015
Respondida: Torsten
el 6 de Nov. de 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 comentarios
Respuesta aceptada
Torsten
el 6 de Nov. de 2015
m=sum(x)/numel(x);
s=sqrt(sum((x-m).^2)/(numel(x)-1));
?
Best wishes
Torsten.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!