the number of elements in the vector segment

조회 수: 2 (최근 30일)
Lev Mihailov
Lev Mihailov 2022년 7월 28일
댓글: Image Analyst 2022년 7월 28일
I process the signal with the findpeaks function, it gives the position numbers of these peaks, and now I need to calculate how many peaks are in the time interval.
loc=[2 3 7 8 9 10 25 26 27]
intervaltime=6
%ans= [2 4 0 0 3] % my length vector is 100
%% zeros because there was nothing in the interval 12-18 and 18-24
Thanks in advance
  댓글 수: 1
Image Analyst
Image Analyst 2022년 7월 28일
Exactly which elements do you consider below to be "peaks"? And where is your call to findpeaks()?
loc=[2 3 7 8 9 10 25 26 27];
intervaltime=6;
%ans= [2 4 0 0 3] % my length vector is 100
%% zeros because there was nothing in the interval 12-18 and 18-24
plot(loc, 'b.-', 'MarkerSize', 30, 'LineWidth', 2);
grid on;
title('Peak Detection');
xlabel('Index')
ylabel('loc Signal Value')

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

답변 (1개)

Mathias Smeets
Mathias Smeets 2022년 7월 28일
Probably not the best way to go but I got this:
location = [ 2 3 7 8 9 10 25 26 27];
intervaltime = 6;
for i = 1:5
result(i) = length(location(location < i*6));
result(i) = result(i) - length(location(location < (i-1)*6))
end
result = 2
result = 1×2
2 4
result = 1×3
2 4 0
result = 1×4
2 4 0 0
result = 1×5
2 4 0 0 3

카테고리

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