When I type in the object in Matlab like this
>> a
I got following.
ans =
[6x1004 uint16]
How can I access a cell of the object a, for example cell of (2,4)?
I tried a(2,4) or a[2,4] in vain.
I understand this is a noob question but have no idea where I can start.
It looks like
ais a cell variable of size1x1. So, did you try indexing with{}, eg