standard deviation array double

5 visualizaciones (últimos 30 días)
Guido Pastore
Guido Pastore el 3 de Mzo. de 2019
Comentada: Steven Lord el 3 de Mzo. de 2019
How to make the standard deviation of a double array??

Respuesta aceptada

Image Analyst
Image Analyst el 3 de Mzo. de 2019
Use std():
sd = std(yourDoubleArray(:))
  1 comentario
Steven Lord
Steven Lord el 3 de Mzo. de 2019
If you're using release R2018b or later you can use the 'all' flag to compute the standard deviation of the array as a whole.
std(yourDoubleArray, 0, 'all')

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by