the value of the row and columns

1 view (last 30 days)
lola khairy
lola khairy on 4 May 2022
Commented: Jon on 4 May 2022
if i have matrix
x = [ 2,5,7,9,0,3,5,
0,5,11,9,20,3,5 ]
how can i get the value of column 5 row 2 i know it is 20 but i mean what function to use in MATLAB

Accepted Answer

Jon
Jon on 4 May 2022
Edited: Jon on 4 May 2022
val = x(2,5)
  1 Comment
Jon
Jon on 4 May 2022
Glad this helped. If you want to get a quick immersion in MATLAB and you haven't already completed it I would recommend the free, 2 hour MATLAB Onramp training. It will get you up and running with MATLAB indexing (as in the question you asked), plotting, and much more. https://www.mathworks.com/learn/tutorials/matlab-onramp.html

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!