필터 지우기
필터 지우기

standard deviation array double

조회 수: 4 (최근 30일)
Guido Pastore
Guido Pastore 2019년 3월 3일
댓글: Steven Lord 2019년 3월 3일
How to make the standard deviation of a double array??

채택된 답변

Image Analyst
Image Analyst 2019년 3월 3일
Use std():
sd = std(yourDoubleArray(:))
  댓글 수: 1
Steven Lord
Steven Lord 2019년 3월 3일
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')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by