MATLAB: Please i need answer ,how can i extract part of periodic signal

periodic signal

load('s0010_rem.mat ');
a=(val(9,:));
figure,
plot(a)

Best Answer

Use findpeaks() to figure out where the peaks are. You can then use array indexing to extract between the peaks.