필터 지우기
필터 지우기

I can not get a "GUIDE" to open

조회 수: 3 (최근 30일)
Pedro Guevara
Pedro Guevara 2019년 5월 31일
댓글: Pedro Guevara 2019년 6월 2일
Goodnight. I have the following problem. I have 2 "Guides", one called "form1" and the other "form2". The process is to press a button of the "form1" must make a series of calculations and at the end of all those calculations must open my "form2" (taking some data from my "form1"). I already tried several solcutions that I found on the internet, but I can not get my "form2" open, in fact I have not been able to create an .m file for that Guide. Please, I need your help with this. I am very new in Matlab and I still do not know much about this tool. thank you.

채택된 답변

Walter Roberson
Walter Roberson 2019년 5월 31일
Invoke guide and tell it to create new GUI, and give it the name form2 . Put all relevant controls in it. Save it as normal, with .fig and .m file.
Inside form1, you can use
handles.data_form2_will_need = whatever;
guidata(handles);
form2_h = form2();
to get the handle of form2 in order to communicate with it.
Inside the OpenFcn for form2 you can use,
%we are inside form2 here, handles refers only to form2's handles
handles.form1_h = findobj(groot, 'tag', 'form1');
handles1 = guidata(handles.form1_h); %this is form1's handles
handles.data_form2_needs = handles1.data_form2_will_need;
guidata(hObject, handles)
  댓글 수: 3
Walter Roberson
Walter Roberson 2019년 6월 1일
편집: Walter Roberson 2019년 6월 1일
guidata(hObject, handles);
In form2 you should put in a breakpoint at
handles.form1_h = findobj(groot, 'tag', 'form1');
and step through that, and check whether handles.form1_h is empty . If it is empty, then your form1 GUI is not really named form1 .
Pedro Guevara
Pedro Guevara 2019년 6월 2일
The problem was that the line of code should be called: guidata (hObject, handles); Thank you. Another concern If I want to pass more data to my "form2" GUI how could I get it?

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by