Borrar filtros
Borrar filtros

Array inside an Array

1 visualización (últimos 30 días)
Dimitrios Adam
Dimitrios Adam el 4 de Sept. de 2019
Editada: Rik el 4 de Sept. de 2019
if i have one array smaller than another
expample. D=[0 1 1 2 3 4] and d=[1 2 3] and i want to find if the D vector has inside the d array also to return the position of the start of d vector for example in this case the position is 3

Respuesta aceptada

Rik
Rik el 4 de Sept. de 2019
Editada: Rik el 4 de Sept. de 2019
If you have only positive integers, you can use an undocumented feature of strfind:
D=[0 1 1 2 3 4];d=[1 2 3];
strfind(D,d) % returns 3
If you have also other values, you can use third output of unique to convert your values into positive integers. If you're using GNU Octave you will have to cast to char to make this work (in which case only 0-255 values are likely to work).

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by