How can I select all parts of a vector?

조회 수: 13 (최근 30일)
giancarlo maldonado cardenas
giancarlo maldonado cardenas 2022년 5월 11일
hello everyone, I have a problem with my code that I cannot solve, I have a vector of 1536, what I am trying to do is select a part for each iteration for, that is, basically I divide that vector of 1536 into 64 parts of 24, and in each part of those 24 I try to discover the peak that crosses a threshold, the problem is that I only get to point 1512 of the 1536 and there is a last peak that crosses the threshold at point 1520 as shown in the image, can someone help me please?
Thank you in advance.
attached bin2.mat and pdp.mat

답변 (1개)

Mitch Lautigar
Mitch Lautigar 2022년 5월 11일
Remove the -1 from your for loop.
for ci = 1:numel(bins)-1
  댓글 수: 9
dpb
dpb 2022년 5월 11일
편집: dpb 2022년 5월 12일
Wherever you find the index inside the binned subset, the overall index to the original array is simply that index plus the starting bin index.
For example, in
[M,I] = max(data);
I will be the location of the maximum in the subsection counting from 1; so the same value/location in the orginal vector will be the location
Ibig=i1+I-1;
Isn't that pretty self-evident since you're beginning each data segment at postion i1 in the full vector?
giancarlo maldonado cardenas
giancarlo maldonado cardenas 2022년 5월 13일
the code continued without finding the last one, but I modified a line and it worked perfectly, how can I accept your question? you answered another user's question hehe

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

카테고리

Help CenterFile Exchange에서 LTE Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by