save a matrix in a loop.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have the output in matrix form in a for loop And i want to store it in a file.
>>for i=1:3 >>input_image=['input1\1\',num2str(i),'.bmp'];
>>[C] =demowithwavwletmaxcomp(input_image);
>>end
I need to save matrix C for each iteration with incrementing name. And I also want to access these matrices for the matching purpose. for hamming distance. I need help..please suggest me..
0 commentaires
Réponse acceptée
Walter Roberson
le 16 Mai 2012
C{i} = ....
Then the matrices would be C{1}, C{2} and so on.
2 commentaires
afaf
le 10 Mar 2013
I got this error:
??? Cell contents assignment to a non-cell array object.
Why?!
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!