Borrar filtros
Borrar filtros

Split array in subarrays According to condition

15 visualizaciones (últimos 30 días)
SmaShBr0ther
SmaShBr0ther el 11 de Jun. de 2018
Respondida: Robert U el 12 de Jun. de 2018
Hello everybody,
I'm currently trying to split an arrays into multiple sub-arrays. I have a 10500000x2 array an I need data from column 1. in Column 2 there are just 1s and 2s that form some kind of puls signal. I now want to have a subarray for each "pulse" where column2 is equal 2. I added the matrix and hope I was able to express my problem.
Thanks

Respuestas (1)

Robert U
Robert U el 12 de Jun. de 2018
Hi SmaShBr0ther:
The requested functionality is obtained by logical indexing
Applied to your example file:
subarray = Example(Example(:,2)==2,:);
Kind regards,
Robert

Categorías

Más información sobre Array Geometries and Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by