필터 지우기
필터 지우기

How to calculate area under peak?

조회 수: 4 (최근 30일)
Namira
Namira 2017년 6월 2일
답변: KSSV 2017년 6월 2일
I want to calculate the area under peak? Is Matlab have any default function to do it? Anyone can help? thanks.
  댓글 수: 2
Star Strider
Star Strider 2017년 6월 2일
If you want to define the individual peaks, use the Signal Processing Toolbox findpeaks function on the negative of your data. Then use those indices with the trapz function on your original data to get the areas under the individual peaks. This will most likely require a for loop.
See the documentation for the various functions for information on how to use them. I leave the details to you.
Benjamin Kraus
Benjamin Kraus 2017년 6월 2일
You are going to need to provide more details so that someone can help you.
For instance:
  • How do you define "peak"? Do you want the largest value? Or the entire curve?
  • You are asking about the area, so you need to specify the x-range you want to measure. How wide is the "peak"?
  • You haven't indicated how you are specifying the x- and y-values. Are the x-values evenly spaced? Are they spaced at unit intervals? If not, what is the spacing?
If you want to know the area under the entire curve, just sum the values and divide by the x-limits (assuming x-values are uniformly spaced).

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

채택된 답변

KSSV
KSSV 2017년 6월 2일
doc trapz

추가 답변 (0개)

카테고리

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