Function returning multiple plots
Afficher commentaires plus anciens
i have a function that takes input from a folder containing mat files and returns a single plot everytime its called. So in all i have 4 plots at the end. My question is how can i get all these plots under a single window ??
would be glad if anyone can help me !
Réponses (1)
Turlough Hughes
le 28 Oct 2019
Just use the hold on statement as follows:
myfunction(input1);
hold on; myfunction(input2);
myfunction(input3);
myfunction(input4);
Catégories
En savoir plus sur Annotations 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!