Verfasst am: 27.04.2021, 16:16
Titel: daten zwischen 2 GUIs übergeben
Hallo an alle,
Ich bin relative neu in Matlab
ich will figure von erste Gui bekommen und in zweite Gui zeichnen lassen.
unten liegt mein Code in erste Gui
Danke für Ihre hilfe.
Code:
% Das ist mein Program function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
x1 =eval(get(handles.edit1,'string'));
a =str2num(get(handles.edit2,'string'));
b =str2num(get(handles.edit3,'string'));
%x = 1:1:x1;
for i= 1:1:a
for j= 1:1:b
y=f(x1,i,j);
data.Y=y;
data.X=x1;
xi = linspace(100 ,300);
data.Xi=xi;
hold on;
p=poldata(data);
%plot(p.X,p.Y,'o',p.Xi,p.Yi,'--');
end end
fig1 = gcf(); %first GUI's figure handle
fig2 = plot2(); %returns second GUI's figure handle
handles2 = guidata(fig2); %fetch second GUI's handles
handles2.fig1 = fig1; %record first GUI's figure handle
guidata(fig2, handles2); %and update second GUI's handles
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.