find value with row and column

Answers (1)

matrix = magic(4)
matrix = 4×4
16 2 3 13 5 11 10 8 9 7 6 12 4 14 15 1
value = 10
value = 10
[row,column] = find(matrix == value)
row = 2
column = 3

Categories

Asked:

on 20 Feb 2023

Answered:

on 20 Feb 2023

Community Treasure Hunt

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

Start Hunting!