フィルターのクリア

two figures or image in single gui

1 回表示 (過去 30 日間)
Manu MJ
Manu MJ 2011 年 6 月 15 日
HI.... How to read the two different images for two different graphs in single GUI?
  1 件のコメント
Gerd
Gerd 2011 年 6 月 15 日
Do you want to read the data of 2 different graphs in one figure?

サインインしてコメントする。

採用された回答

Arturo Moncada-Torres
Arturo Moncada-Torres 2011 年 6 月 15 日
Mmm, actually is doing the same for one axes than for two. You just need to specify in which axes you will like to display the image. You can do this using the Parent property and the handle of the axes in the GUI. On a quick thought, it would be something like this:
I1 = imread('image1.jpg');
I2 = imread('image2.jpg');
imagesc(I1, 'Parent', handles.axes1);
imagesc(I2, 'Parent', handles.axes2);
Just put that in your code wherever you need it.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by