How to replace the Image with a graph in GUI?
2 ビュー (過去 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!