How to replace the Image with a graph in GUI?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
David Sanchez
2013-8-19
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!