subplot in loop and save final figure, when clear all used after each loop
Afficher commentaires plus anciens
Réponses (1)
Jos (10584)
le 23 Juin 2016
0 votes
Generally the use of clear all is not to be recommended, except at the beginning of a script. You can use CLEARVARS to free memory, which makes your code also much more readable.
4 commentaires
Bhowmik.U
le 23 Juin 2016
Jos (10584)
le 23 Juin 2016
subplot and clear have little to do with each other. Did you read the help and documentation?
Bhowmik.U
le 24 Juin 2016
Jos (10584)
le 24 Juin 2016
Use
subplot(4, 6, a)
rather than subplot(4,6, ii)
Catégories
En savoir plus sur Subplots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!