필터 지우기
필터 지우기

i want to pop a new window in Matlab GUI.

조회 수: 2 (최근 30일)
mania online
mania online 2016년 5월 15일
편집: Geoff Hayes 2016년 5월 15일
i want to pop a new window in Matlab GUI. I need to display three figures on new window. My existing GUI is full of figures and push buttons. enter preformatted text here
function pushbutton7_Callback(hObject, eventdata, handles)
global img;
[Red, x] = imhist(img(:,:,1));
bar(x, Red, 'Red');
[Green, y] = imhist( img(:,:,2));
bar(y, Green, 'Green');
[Blue, z] = imhist(img(:,:,3));
bar( z, Blue, 'Blue');
how can I display output of these commands on new window which contain three figures (one for each color).

채택된 답변

Geoff Hayes
Geoff Hayes 2016년 5월 15일
mania - just create a new figure and use subplot to create 3 axes which you will update accordingly.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by