Can compare between vector and array

2 visualizaciones (últimos 30 días)
huda nawaf
huda nawaf el 17 de Ag. de 2022
Comentada: huda nawaf el 17 de Ag. de 2022
Hello,
Can matching between vector and array where I have vector and large size of array, for example:
x with length 5 :x=[1 2 3 4 5];
A with size 3*5 A=[2 3 4 6 7; 10 11 1 2 3; 1 2 3 4 5];
Thanks
  1 comentario
James Tursa
James Tursa el 17 de Ag. de 2022
What do you want for output? A list of row numbers in A that match x? Or ...?

Iniciar sesión para comentar.

Respuesta aceptada

James Tursa
James Tursa el 17 de Ag. de 2022
Editada: James Tursa el 17 de Ag. de 2022
Does this do what you want? Finds the row numbers in A that match x.
find(all(A==x,2))

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by