Matlab Basics— How to access array elements based on their position (index) in the array

Indexing with Element Positions

e is the element in the 3,2 position (third row, second column) of A.

You can also reference multiple elements at a time by specifying their indices in a vector. For example, access the first and third elements of the second row of A.

--

--