access the row and col of a matrix

6 Ansichten (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 21 Apr. 2017
Bearbeitet: Stephen23 am 21 Apr. 2017
i have a matrix
A = [11 12 13
14 15 16
17 18 19];
now i take a value 6... how can i get the value there and and row and column....
eg: value = 16
row = 2
col = 3

Akzeptierte Antwort

Stephen23
Stephen23 am 21 Apr. 2017
Bearbeitet: Stephen23 am 21 Apr. 2017
>> N = 6; % your input
>> [col,row] = ind2sub(size(A),N)
col = 3
row = 2
>> val = A(row,col)
val = 16

Weitere Antworten (2)

dbmn
dbmn am 21 Apr. 2017
2 Possibilities
Easiest: row column
A(2,3)
Second possibility (by element count)
A(8)

Eng. Fredius Magige
Eng. Fredius Magige am 21 Apr. 2017
call it as: call=A(2,3)

Kategorien

Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by