Carrying variables and matrices between GUIs

조회 수: 2 (최근 30일)
Kamuran
Kamuran 2015년 5월 10일
댓글: Image Analyst 2015년 5월 10일
Hello,
Is there a way to carry variable between GUIs. I am calling a GUI inside another GUI. I want to carry variables from the first on to the second one. For example
First GUI
Function1
Function2
.
.
.
Call the second GUI ( I want to access some of the results from above functions) and I don't want to save and load the data.
Is there a way of doing this?
Thanks

채택된 답변

Walter Roberson
Walter Roberson 2015년 5월 10일
Yes, a GUI is a function, and you can define the function with as many parameters as you need and pass the parameters from the first GUI.

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 5월 10일
Just pass them in the argument list.
function FirstGUI()
% Call a couple of functions defined inside FirstGUI.m
Function1();
Function2();
% Now, call the the second GUI, passing it some arguments...
[output1, output2] = SecondGUI(input1, input2, input3);
In the OpeningFcn() of the second GUI, look at varargin to extract the various inputs and do something with them, like send their values to properties of various widgets on the interface, or whatever you want.
  댓글 수: 5
Walter Roberson
Walter Roberson 2015년 5월 10일
편집: Walter Roberson 2015년 5월 10일
Why not pass them all in one matrix in the first place?
If the matrices might be different size or data types, use a cell array instead of a numeric array. or use a structure.
varstopass = struct{'input1', input1, 'input2', input2, 'input3', input3);
then pass in varstopass, and afterwards you can use varstopass.input1 and so on.
Image Analyst
Image Analyst 2015년 5월 10일
Good idea, and that's what I do. Any user settings that I need to pass around to different functions (ones that are not simply GUI properties), I just attach as fields to a structure I call UserSettings and then pass that around. The Mathworks recommends attaching to the "handles" structure but the handles structure already has so many other things on it that I don't want to clutter it up with my stuff.

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

카테고리

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