i want to determine common sub sequence on array

8 visualizaciones (últimos 30 días)
abduall hassn
abduall hassn el 29 de Abr. de 2015
Editada: abduall hassn el 3 de Nov. de 2016
i want find common sub sequence from sequence output should be like
1,2,3
9,10
if we look 1,2,3 is common sub sequence between all array and also 9,10
  2 comentarios
Guillaume
Guillaume el 29 de Abr. de 2015
Editada: Guillaume el 29 de Abr. de 2015
I'd recommend that you read this wikipedia page on the problem and code the algorithm described there.
Possibly, there's also something on fileexchange.
Stephen23
Stephen23 el 29 de Abr. de 2015
@abduall hassn: Are the element values unique within each vector?

Iniciar sesión para comentar.

Respuesta aceptada

pfb
pfb el 29 de Abr. de 2015
You can use the builtin function "intersect"
i = intersect(a,b);
i = intersect(i,c);
[...]
i = intersect(i,h)
The last i should contain only the elements common to all sequences.
If your sequences have all the same length, you can put them in a matrix, and loop over its rows. Otherwise you can build a cell array, so that you can loop, as opposed to writing one instruction for each intersection you need to do.
  2 comentarios
pfb
pfb el 29 de Abr. de 2015
the output of what I propose is
i = [ 1 2 3 9 10]
pfb
pfb el 29 de Abr. de 2015
mmm, perhaps now I get it... you want the common sub-sequences (plural).
Not sure my solution is the optimal one, but it contains what you're looking for.
You can break the sub sequences by checking the difference between adjacent elements in i.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by