search an array and find the row and column number of a certain element

1 visualización (últimos 30 días)
I have an array with a variety of elements. I want to search this array and find the element "P" and assign the column number and row number to variables. How would i go about doing this?

Respuesta aceptada

Fulden Buyukozturk
Fulden Buyukozturk el 2 de Nov. de 2018
Let's assume you have the following array:
myArray = {'an' 'example' 'p'};
You can use find to obtain indices where the input evaluates to true:
[a,b] = find(strcmp('p', myArray));

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by