Azzera filtri
Azzera filtri

standard deviation array double

4 visualizzazioni (ultimi 30 giorni)
Guido Pastore
Guido Pastore il 3 Mar 2019
Commentato: Steven Lord il 3 Mar 2019
How to make the standard deviation of a double array??

Risposta accettata

Image Analyst
Image Analyst il 3 Mar 2019
Use std():
sd = std(yourDoubleArray(:))
  1 Commento
Steven Lord
Steven Lord il 3 Mar 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')

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by