How to replace the Image with a graph in GUI?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
In GUI File first, i want to display one image and i want to replace the image with some graph on the same axes, after calling other functions.
0 commentaires
Réponses (1)
David Sanchez
le 19 Août 2013
If you only have one axes object in your GUI, just call the functions:
imagesc('your_pic.npg'); % for example
plot(x,y); % this will overwrite the image with the data plot
0 commentaires
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps 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!