Find a specific array within a larger array
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
james ingham
el 28 de Nov. de 2023
Movida: Dyuman Joshi
el 28 de Nov. de 2023
Hi all,
I am struggling with a problem. I have a large array, for example a = [11 12 13 14 15 16 13 14], and I want to find the index for a specfic sub sequence eg. b = [13 14 15]. So in this example I would want the index of 3 to indicate the position that b started in a. I dont want to know the indices of a that any number within b, i instead need them to be specifically in the order b, ie I dont care about the last two 13 14 numbers in a as it isnt the entirety of b.
I know I could simply do a loop that checks b against a subset of a and loops throughout the whole of a but this seems a little ineffectient if a is very big, (in my acutal code a is many 100,000's of numbers in length).
Is there a more efficent way, any help is appreiacted.
Thanks
J
2 comentarios
Dyuman Joshi
el 28 de Nov. de 2023
Movida: Dyuman Joshi
el 28 de Nov. de 2023
a = [11 12 13 14 15 16 13 14]
b = [13 14 15]
strfind(a, b)
Dyuman Joshi
el 28 de Nov. de 2023
Movida: Dyuman Joshi
el 28 de Nov. de 2023
Ah, it seems that I'm just a little late to the party.
Respuesta aceptada
Más respuestas (0)
Ver también
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!