Find other element in row of a matrix

3 vues (au cours des 30 derniers jours)
Tanmoy
Tanmoy le 17 Mai 2015
Modifié(e) : Stephen23 le 17 Mai 2015
I have a matrix A = [ 3 4 ; 1 3; 5 6] I need to find the value beside 4. I tried find() function which returns (row, column) indices of 4, I need to calculate 3 from that indices. Is there any direct way to tell 3 is the neighbor element of 4?

Réponse acceptée

Stephen23
Stephen23 le 17 Mai 2015
Modifié(e) : Stephen23 le 17 Mai 2015
Use the row output of find
>> A = [ 3 4 ; 1 3; 5 6];
>> [r,c] = find(A==4);
>> A(r,1)
ans =
3

Plus de réponses (0)

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by