It might be easy question for you guys, but I am new in Matlab. I have this code :
g = cell(2,3);
g{1,2} = struct('name','joni');
g{2,2} = cell(3,3)
g(1,2)
I want to display 'joni' in the answer,
but with this code it only shows [1x1 struct]
.
BTW I already tried this code :
g(1,2).name
and the result is error.