How to add several interfaces in one interface of MATLAB GUI

조회 수: 7 (최근 30일)
Das Bably
Das Bably 2013년 2월 22일
Hi Actually I want to add different element in one GUI interface and by clicking different element different interfaces will be appeared for different calculation and will give different transfer matrices those will be calculated together by pressing pushbutton. Please if anybody have any idea tell me as I am trying from many days but don't know how to do it. Thanks to all

채택된 답변

Mark Whirdy
Mark Whirdy 2013년 2월 22일
편집: Mark Whirdy 2013년 2월 23일
What is an "element", you mean a "uiobject" (uibutton, uitable etc?)?
Happy to help, but you'll have to work on the question clarity a little for me.
Do you want to create uicontrols programmatically when certain values are selected in other uicontrols?
In this case you'll need to put uicontrol() commands inside the callbacks of your "parent"/controlling uiobjects.
-------------------------------------------------------------------
I'm afraid I can't describe the entire process of GUI-design here (which is really what your question requires) so it will be a case of doing a lot of background reading on your, unless you have a very specific task you want to achieve.
Broadly, your options are 1) use GUIDE to drag & drop objects into a figure 2) use the uicontrol() to generate uiobjects in a figure programmatically
In both cases you will then put code into the callbacks which changes the properties of the objects (the values in textboxes) when events are triggered (i.e. the user pushes a button)
If you want to make a group of objects appear & disappear then create them inside a uipanel (their parent should be the panel) and make the panel visible/invisible by
set(handles.myPanel,'visible,'off')
You can put this command inside the callback of a pushbutton (for example) to facilitate control of the panel.
I'd suggest that you play around with this stuff a little and come back to the Matlab Answers if you hit a specific hurdle along the way.
  댓글 수: 1
Das Bably
Das Bably 2013년 2월 23일
Thanks a lot for your answer and sorry for late reply, Actually I have a design based problem and I made several script files for several calculations, I just want to decorate all the calculations in one GUI interface so that by cliking pushbutton for one section an innterface will be appeared and so on. So how this can be possible could you please tell me? Thanks Mark Whirdy

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

추가 답변 (2개)

Lalit Patil
Lalit Patil 2013년 2월 23일
uicontrol( 'Style', 'push', 'Position', [20 190 250 30],'fontsize',10,'string','Your GUI name', 'Callback',@(src, event) GUI name() );
Write this script below opening function.. and at place Your GUI name write the name of that gui which you want to open..
  댓글 수: 5
Das Bably
Das Bably 2013년 2월 25일
Thanks a lot I think I am able to enter multiple interfaces in single one but I need your kind help for another problem like I want to use the calculation part of a script file in MATLAB GUIDE m file in pushbutton calback but I am not getting the same result as like script file moreover in a matrix like form. Please if you have any suggestion give me Thanks again Lalit Patil
Das Bably
Das Bably 2013년 2월 25일
Hi I want to put many children interfaces in the main interface for that i want to get the pushbutton in main interfaces side by side instead of vertical position, for that what kind of change should I make in 'position'? Please give me any reply if it is known to you Thank you for your kind help

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


per isakson
per isakson 2013년 2월 25일
편집: per isakson 2013년 2월 25일
See
  1. uitab and uitabgroup (Matlab functions with hidden documentation - open the files)
  2. Tab panels – uitab and relatives
  3. TabPanel Constructor v2.8 (2010)
  4. search the File Exchange for more
  5. uitabpanel
  댓글 수: 1
Das Bably
Das Bably 2013년 2월 25일
Thanks for your ans, I tried with tabpanel but it doesn't work as i am a beginner so i have lackings of vast knowledge.I am using version R2011a. I have alredy looked out all simple examples using GUIDE interface that creates interactive window, If you help me in coding inside the callback of GUIDE instead of Programmatically made GUI it will be more helpfull for me. thank you again

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by