필터 지우기
필터 지우기

Extracting the index numbers of greater than zero values of an array in different / separate sets MATLAB

조회 수: 78 (최근 30일)
I have an array of n length. Array has braking energy values. Index numbers represents Time in seconds.
Structure of array is as following:
1 to 140 index numbers array has zero values. (The time during which vehicle was not braking)
141 to 200 index numbers array has random energy values. (The time when vehicle was braking and regenerating energy)
201 to 325 index number array has zero values. (The time during which vehicle was not braking)
326 to 405 index numbers array has random energy values. (The time when vehicle was braking and regenerating energy)
and so on. This sequence goes on till nth number of array.
What I want to do is to get starting and ending index number of each set of energy values.
For example the result I must get shall be like
141 - 200
326 - 405
so on...
Latter this time will be used for charging of battery.
Can someone please suggest what method or technique shall I use to get this result.
  댓글 수: 2
Image Analyst
Image Analyst 2018년 12월 4일
Please attach some data for us to work with. Make it easy for us to help you, not hard. This is trivially easy with regionprops() if you have the Image Processing Toolbox.

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

채택된 답변

Guillaume
Guillaume 2018년 12월 4일
편집: Guillaume 2018년 12월 4일
startends = find(diff([0, yourarray > 0, 0]));
startends = reshape(startends, 2, [])';
startends(:, 2) = startends(:, 2) - 1
  댓글 수: 3
Guillaume
Guillaume 2018년 12월 4일
편집: Guillaume 2018년 12월 4일
I have no idea what I was thinking when I wrote the second line. It's not what I intended at all.
Fixed now. You understood how the code works anyway, judging by your comments.
Note that if energyB is a column vector, then:
startends = find(diff([0; energyB > 0; 0]));
will be more efficient than transposing. The rest would stay the same.

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

추가 답변 (1개)

madhan ravi
madhan ravi 2018년 12월 4일
편집: madhan ravi 2018년 12월 4일
Use logical indexing:
idx=find(values>0) %gives linear indices
values(values>0) %gives you all the values greater than zero

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by