Filter löschen
Filter löschen

standard deviation array double

4 Ansichten (letzte 30 Tage)
Guido Pastore
Guido Pastore am 3 Mär. 2019
Kommentiert: Steven Lord am 3 Mär. 2019
How to make the standard deviation of a double array??

Akzeptierte Antwort

Image Analyst
Image Analyst am 3 Mär. 2019
Use std():
sd = std(yourDoubleArray(:))
  1 Kommentar
Steven Lord
Steven Lord am 3 Mär. 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')

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by