필터 지우기
필터 지우기

How to count the number of times a value from a vector exceeded an interval?

조회 수: 2 (최근 30일)
Dear all,
I have this vector r = [1 2 4 5 6 3 2 7] and I want to count how many times each value exceeds the interval from 4-5. More detailed, after r(5) it should count 1, after r(6) it should count 2, after r(7) it should count also 2 because it counted it before since the previous value is lower than 4 and finally after r(8) it should count 3.
Thank you very much.
  댓글 수: 1
Jan
Jan 2018년 8월 5일
@Stergios Verros: It would help to understand your question, if you post the wanted output for the example input also.

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

채택된 답변

Rik
Rik 2018년 8월 3일
편집: Rik 2018년 8월 3일
The rules you want are a bit unclear, but if I understand them correctly, the code below should do what you want. If not, please give the desired output as a vector, not as text.
r = [1 2 4 5 6 3 2 7];
range=[4 5];
%Mark the positions exceeding the upper value:
L2=r>range(2);%The value should be greater than the bound
L2=L2&~[true L2(1:end-1)];%The previous value should not
%Do the reverse for the lower bound
L1=r<range(1);
L1=L1&~[false L1(1:end-1)];
output=cumsum(L1|L2);
  댓글 수: 5
Image Analyst
Image Analyst 2018년 8월 3일
편집: Image Analyst 2018년 8월 3일
No, not to me. Let's say r = [11 12 14 15 16 13 12 17]. What does "how many times each value exceeds the interval from 4-5" mean. It sounds like you're wanting a histogram when you say "how many times", but what's really confusing is "the interval from 4-5". So, for my example r, do you want
  1. the number of values that exceed 4,
  2. the number of times values exceed 5, or
  3. the number of values that exceed 14 (which is element #4)?
Finally, what is your desired output?
Rik
Rik 2018년 8월 5일
Did my last edit solve your question? If so, please consider marking it as accepted answer.

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

추가 답변 (1개)

Stergios Verros
Stergios Verros 2018년 8월 6일
Thank you Rik!

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by