MATLAB: What is the number in a position in an array

arrayposition;

Lets say I have an array: m = [1 4 8 19 21 30]
Whar function do I use to find out what number is in position 2 of array m?

Best Answer

Indexing:
m(2)