How to generate different variables to store different sets of matrix?

1 Ansicht (letzte 30 Tage)
Using for loop, 35 different matrices are generated in my codes. How can I generate 35 different variables to store them respectively?

Akzeptierte Antwort

Star Strider
Star Strider am 15 Nov. 2014
Just DON’T!
Create a multidimensional matrix, or if your matrices are different sizes, use a cell array.
  4 Kommentare
Patrick
Patrick am 15 Nov. 2014
Thanks man, my problem is resolved!
Star Strider
Star Strider am 15 Nov. 2014
My pleasure!
If you want to call the matrix created at iteration 20 of the loop, you can refer to it as:
M(:,:,20)
However if you want to do calculations with it, it’s sometimes easier to create a separate temporary matrix for it, for instance:
Mt = M(:,:,20);
to avoid having to write all the subscripts each time you use it in your calculations.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by