I was wondering what is the best way to group different matrices together.
I have multiple matrices called A1
(of size 9 x 48), A2
(of size 3 x 48), A3, A4 and so on. Each of these matrices are of a different size.
I want to group all of these together so that I can easily call them in another function that iterates through each matrix. Something like: Group = {A1, A2, A3, A4}
Therefore, I can run a function which calls each matrix and runs a test on it then goes to the next.
Would the best way to do this be a cell array?