Borrar filtros
Borrar filtros

finding the position of a number?

1 visualización (últimos 30 días)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran el 27 de Mzo. de 2013
a=[1 2 3;4 5 6] b=2 i should compare b with all elements of a and to find the corresponding position in a ... e.g., the answer should be (1,2). what command or what method should i use

Respuesta aceptada

Youssef  Khmou
Youssef Khmou el 27 de Mzo. de 2013
Editada: Youssef Khmou el 27 de Mzo. de 2013
try this way
a=[1 2 3;4 5 6]; b=2;
[x,y]=find(a==b);
A=[x,y];
  1 comentario
Image Analyst
Image Analyst el 27 de Mzo. de 2013
I wouldn't call it x,y - I'd call it row, column. Because usually x is the column (horizontal location), not the row as you have it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Language Fundamentals 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