Detect consecutive positive numbers in an array

조회 수: 6 (최근 30일)
Amirhossein Moosavi
Amirhossein Moosavi 2020년 9월 24일
댓글: Amirhossein Moosavi 2020년 9월 24일
Hello,
Let us assum an Array A as follows:
A = [4 9 6 0 0 3 4 0 3]
I want to detect the location (begining and ending) of consecutive positive values and store in a Matrix like B:
B=[1 3
6 7
9 9]
For example, in Array A, the first block of consequtive positive values starts from the first element and ends at the third elements.
Would you please help me?
Best, Amir

채택된 답변

David Hill
David Hill 2020년 9월 24일
편집: David Hill 2020년 9월 24일
A(A<0)=0;%if negative numbers possible
A(A>9)=9;%if >single digit possible
a=num2str(A);
a=a(a~=' ');
B=[regexp(a,'[1-9]*')',regexp(a,'[1-9]*','end')'];
  댓글 수: 3
David Hill
David Hill 2020년 9월 24일
Works for me.
Amirhossein Moosavi
Amirhossein Moosavi 2020년 9월 24일
It works now, thanks.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by