I run an algorithm that result of it is a matrix as A. I run an algorithm 50 times and I want to save results as A1 to A50 matrix. how can I write?
Asked
Active
Viewed 54 times
0
-
6You should really consider using a 3D array, or cell array of matrices. – Oliver Charlesworth May 02 '17 at 18:11
-
3You really don't want those variables, as dynamic variable naming is [bad, very bad](http://stackoverflow.com/questions/32467029/how-to-put-these-images-together/32467170#32467170). – Adriaan May 02 '17 at 18:18
-
1What @OliverCharlesworth said, x1000. – beaker May 02 '17 at 18:20