MATLAB: How can i plot and calculate signal area

biomedical engineering

pleaze can you help me ! i have this signal and i want to plot its envelop and calculate area parts .It would be grateful , if i get the feedback at the earliest , so that i can take the next steps .

Best Answer

To determine the envelope, use the envelope (link) function (introduced in R2015b).
To help segment your signal into whatever parts you want, use the findchangepts (link) function.
To do the integration, use the trapz (link) function.
Related Question