subplot in loop and save final figure, when clear all used after each loop
Show older comments
Answers (1)
Jos (10584)
on 23 Jun 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 Comments
Bhowmik.U
on 23 Jun 2016
Jos (10584)
on 23 Jun 2016
subplot and clear have little to do with each other. Did you read the help and documentation?
Bhowmik.U
on 24 Jun 2016
Jos (10584)
on 24 Jun 2016
Use
subplot(4, 6, a)
rather than subplot(4,6, ii)
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!