フィルターのクリア

passing data & connecting gui(s)

1 回表示 (過去 30 日間)
Hossein Saberi
Hossein Saberi 2018 年 11 月 23 日
編集済み: Hossein Saberi 2018 年 11 月 23 日
Hi, i have 3 gui and i have 3 tab like this file that i upload how can i connect them together
every 3 gui icludes axes, pushbuttom,...
  2 件のコメント
Preethi
Preethi 2018 年 11 月 23 日
you want to pass data between the gui??
Hossein Saberi
Hossein Saberi 2018 年 11 月 23 日
yes i can find this
function pushbutton1_Callback(hObject, eventdata, handles)
% get the handle of Gui1
h = findobj('Tag','Gui1');
% if exists (not empty)
if ~isempty(h)
% get handles and other user-defined data associated to Gui1
g1data = guidata(h);
% maybe you want to set the text in Gui2 with that from Gui1
set(handles.text1,'String',get(g1data.edit1,'String'));
% maybe you want to get some data that was saved to the Gui1 app
x = getappdata(h,'x');
end
but i dont understand how it work

サインインしてコメントする。

採用された回答

Jan
Jan 2018 年 11 月 23 日
A specific question is more efficient than "I don't understand how it works". The code example contains useful comments already.
% get the handle of Gui1
h = findobj('Tag','Gui1');
Is this clear so far? Each GUI element, e.g. a figure, has a unique "handle", which can be used to access the object. Instead of seaching all GUI elements, e.g. all buttons, lines and menu entries, it is faster to restrict the search to the wanted object:
h = findob(allchild(0), 'flat', 'Tag', 'Gui1');
Now only figures are searched.
% if exists (not empty)
if ~isempty(h)
A matching figure was found.
% get handles and other user-defined data associated to Gui1
g1data = guidata(h);
Now you can access the handles struct of the found figure. Do not get confused by the name "handles". It does contain handles of the GUI elements created by GUIDE, but you can store anything in this struct also.
Now the callback can access all elements of the figure with the tag 'Gui1', e.g. getting the values of toggle-buttons or draw in existing axes.
Search in this forum for "share data between callbacks". This works for callbacks of different figures also.
  1 件のコメント
Hossein Saberi
Hossein Saberi 2018 年 11 月 23 日
編集済み: Hossein Saberi 2018 年 11 月 23 日
Thank you for your help jan
I used 8 guide because of the lack of space in guide, and now I want to put all the information (e.g. position , ...) in one m-file
do u think can i call this information with this method and then use this?
guidata(hObject, ...)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by