How to input a position in a matrix?
11 views (last 30 days)
Show older comments
I am trying to write a function that takes an input of a m by n matrix and also a 2 element 1D array that represents a position in the given matrix. For example, if I had an array of E=[3 6 3 7 2 5;1 4 2 4 1 4; 7 9 5 6 9 2; 10 8 4 3 10 5] and I wanted to start at position E(3,3) = 5, how would I go about having these both given as a user input?
0 Comments
Answers (1)
KALYAN ACHARJYA
on 6 Sep 2017
Edited: KALYAN ACHARJYA
on 6 Sep 2017
%
A={1 2 3;4 5 6}
% If you want to locate any position suppose
A{2,2} % Go to the particular position>> its go to 5 value element
% Define any position using A{i,j}
%
0 Comments
See Also
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!