Creating a position Vector

35 visualizaciones (últimos 30 días)
Jasraj Soni
Jasraj Soni el 8 de Sept. de 2019
Comentada: Jasraj Soni el 8 de Sept. de 2019
A = [1; 3; 5; 7; 9; 11; 13; 15] //Parent Vector (column vector)
B =[3; 7; 11] //Vector obtained from A based on some constraints
C = [2; 4; 6] // It is a position vector showing the position of values of B in A.
So my question is, how to find the position vector (i.e. C) ?

Respuesta aceptada

madhan ravi
madhan ravi el 8 de Sept. de 2019
Editada: madhan ravi el 8 de Sept. de 2019
C = find(ismember(A,B))
  1 comentario
Jasraj Soni
Jasraj Soni el 8 de Sept. de 2019
Its working!
Thanks a lot.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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