Multiple Figures from Functions
17 次查看(过去 30 天)
显示 更早的评论
Hello, I have a function that produces two figures when it is run. However, in my execution script, I intend to run this function twice ultimately producing 4 figures. How can I stop the second run of the function overwriting the previous 2 figures?
0 个评论
回答(1 个)
Ameer Hamza
2020-11-25
In the function, you will have statements like
figure(n); % n can be any number
Replace it with
figure()
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!