필터 지우기
필터 지우기

Standard deviation of peak values

조회 수: 16 (최근 30일)
Anders
Anders 2013년 6월 4일
Hi all
I have a sligth issue, concerning standard deviation of some peak values.
I have three curves (a, b and c) plus a mean curve
I am interested in the peak values, but need the standard deviation of these aswell. Etc. mean value peak = 168 +/- std. dev?
Any thoughts of how to do that? I am pretty new to matlab i have to say.
Best regards Anders

채택된 답변

Anders
Anders 2013년 6월 4일
Thank you Iain
I am aware it is not the best, but i only have three samples, and my supervisor want some kind of statistics on them.

추가 답변 (1개)

Iain
Iain 2013년 6월 4일
Yuo can get the peak value with:
peak = max(curve);
You can calculate a standard deviation with:
sigma = std(samples);
So,
peak(1) = max(a);
peak(2) = max(b);
peak(3) = max(c);
sigma = std(peak);
Not really all that sensible to use stanard deviation for 3 samples though.

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by