Finding the position of valaue

1 visualización (últimos 30 días)
Pat
Pat el 24 de Nov. de 2012
i have two values
A=[50 90 45 10 5 15 20];
B=[10 90 45 50 5 20 15];
I have to find the position of A in B ,for example position of 50 in B is 4,position of 90 in B is 2
so the output will be
c=4 2 3 1 5 7 6
please provide assistance

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 24 de Nov. de 2012
Editada: Azzi Abdelmalek el 24 de Nov. de 2012
out=arrayfun(@(x) find(B==A(x)),1:numel(A))

Más respuestas (1)

Andrei Bobrov
Andrei Bobrov el 24 de Nov. de 2012
[out,out] = ismember(B,A);

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by