From: Pi-Meson on
Hello, I'm new to MATLAB and want to know if it is possible to create a matrix where each element is itself a matrix?
From: David Young on
Use cell arrays, or possibly structure arrays.
From: us on
"Pi-Meson " <edward.mollison-ball(a)student.manchester.ac.uk> wrote in message <hnnt5d$p7i$1(a)fred.mathworks.com>...
> Hello, I'm new to MATLAB and want to know if it is possible to create a matrix where each element is itself a matrix?

one of the solutions

help cell;

us