How to get the longest consecutive values in a column vector and the position at which it starts

54 visualizaciones (últimos 30 días)
Hello,
Suppose i have a single column vector A'=[0 0 0 1 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1]
I only want the longest consecutive values of 1's and display only that.
I'd really appreciate any help!

Respuesta aceptada

Bruno Luong
Bruno Luong el 24 de Ag. de 2019
Editada: Bruno Luong el 24 de Ag. de 2019
A=[0 0 0 1 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1]'
i=reshape(find(diff([0;A;0])~=0),2,[]);
[lgtmax,jmax]=max(diff(i));
istart=i(1,jmax);
lgtmax % length of the longest sequence of 1s
istart % where it starts
  3 comentarios
Bruno Luong
Bruno Luong el 24 de Ag. de 2019
Editada: Bruno Luong el 24 de Ag. de 2019
The terminologies are mine it doesn't matter for MATLAB syntax.
Actually my code is compact but difficult to understand, even for people who are initiated.
If you want to understand, you can split into multiple small and basic commands to analyze it and read the doc of corresponding command and experiment with your own examples.
[0;A;0]
Pad 0s at the header and trailer of A.
The command
diff([0;A;0])~=0
returns a logical array with TRUE whene there is a transitions (0->1) or (1->0).
And the TRUE positions must come in pairs: alternate in order of 0->1, 1->0, 0->, 1->0, etc ... since I take care to pad the arrays with 0s in both ends.
So by reshaping
i=reshape(... ,2,[]);
I'll get two-row array, the first row contains index positions of 0->1, and the second row of 1->0. You'll need to know about MATLAB major-column storage scheme for array to fully understand such trick.
Therefore the difference of the two columns is the the length of the consecutive 1s in A with this command:
diff(i);
By doing
[lgtmax,jmax]=max(diff(i));
I search for the longest sequence of 1s, and the number of this sequence is in retreived in jmax.
The last command
istart=i(1,jmax)
just maps back the starting position of this sequence in A (since I pad 0 in the head, it's actually the position of the first 1).

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 24 de Ag. de 2019
  1 comentario
Meghana Balasubramanian
Meghana Balasubramanian el 24 de Ag. de 2019
Thank you, but I was looking for a matlab code to help me out rather than a downloadable function, even if it does make my job easier.

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing 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