필터 지우기
필터 지우기

help in inserting figure and also open another window using a gui.

조회 수: 1 (최근 30일)
Nithya
Nithya 2014년 3월 7일
댓글: Nithya 2014년 3월 14일
I have written script files which includes functions in it. These functions deal with displaying figure. What is that i should do inorder to work all these on a single gui. Will this gui can cal another gui window in it? Can anybody help me with some ideas or suggest a link that i can refer to. Thankyou Nithya

채택된 답변

Chandrasekhar
Chandrasekhar 2014년 3월 7일
you can add 'axes' to your figure file of GUI so that the figure will get displayed in the same gui.
  댓글 수: 8
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2014년 3월 12일
Nithya you confused everyone I guess! Do us a favor, attach your file so we can exactly see what you're talking about. Meanwhile, it would be a good idea to create a handle for your axes so that you can specify where you want to see the image
h=figure;
figure(h); % makes your figure window current
a=axes();
imshow(cdata,colormap,'Parent',a); % this shows image on axes a on figure h
Good Luck!
Nithya
Nithya 2014년 3월 14일
I got things done..I thankyou both for your help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Display Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by