Borrar filtros
Borrar filtros

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

79 visualizaciones (últimos 30 días)
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 comentarios
Image Analyst
Image Analyst el 4 de Dic. de 2018
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.

Iniciar sesión para comentar.

Respuesta aceptada

Guillaume
Guillaume el 4 de Dic. de 2018
Editada: Guillaume el 4 de Dic. de 2018
startends = find(diff([0, yourarray > 0, 0]));
startends = reshape(startends, 2, [])';
startends(:, 2) = startends(:, 2) - 1
  3 comentarios
Guillaume
Guillaume el 4 de Dic. de 2018
Editada: Guillaume el 4 de Dic. de 2018
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.

Iniciar sesión para comentar.

Más respuestas (1)

madhan ravi
madhan ravi el 4 de Dic. de 2018
Editada: madhan ravi el 4 de Dic. de 2018
Use logical indexing:
idx=find(values>0) %gives linear indices
values(values>0) %gives you all the values greater than zero

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by