I would like to make multiple arrays with different dimensions in Matlab. Is there a way to do this inside a "for" loop?
For example, I would like to create a matrix A with dimensions 100x100, then with 200x200,etc
|
I would like to make multiple arrays with different dimensions in Matlab. Is there a way to do this inside a "for" loop? For example, I would like to create a matrix A with dimensions 100x100, then with 200x200,etc |
||||
|
|
|
Try using the Something like:
This will be much faster initially (since the array is not having to be resized every time you add an element); you can then iterate over it later and add whatever values you need. EDIT: I should clarify, the zeros function creates an m X n matrix (or an array if you leave off the second argument) and fills it with all zeros. It's a good starting point for constructing large arrays. |
|||
|
|
|
You could create a cell in which you store the matrices:
Note: to get an item from a cell you should use {} instead of (). a{1} returns the first matrix, a(1) returns a cell which contains that matrix. |
||||