For example, if I want to read the middle value from magic(5), I can do so like this:
magic(5)
M = magic(5); value = M(3,3);
to get
At least in MATLAB 2013a you can use getfield like:
a=rand(5); getfield(a,{1,2}) % etc
to get the element at (1,2)