WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

Matlab GUI Variablen erhalten

 

morisq
Forum-Century

Forum-Century


Beiträge: 140
Anmeldedatum: 24.06.11
Wohnort: ---
Version: R2010a
     Beitrag Verfasst am: 16.11.2011, 11:44     Titel: Matlab GUI Variablen erhalten
  Antworten mit Zitat      
Hallo Zusammen,

ich habe innerhalb eines Test-GUI's eine Funktion geschrieben inenrhalb welcher Variablen angelegt werden. Jedoch wird nach erfolgreichem Ausführen der Funktion der workspace gelöscht und die Variablen sind fort. Wie kann ich das unterdrücken?

Hier mein Code:

Code:
function varargout = Datenmanagement(varargin)
% DATENMANAGEMENT M-file for Datenmanagement.fig
%      DATENMANAGEMENT, by itself, creates a new DATENMANAGEMENT or raises the existing
%      singleton*.
%
%      H = DATENMANAGEMENT returns the handle to a new DATENMANAGEMENT or the handle to
%      the existing singleton*.
%
%      DATENMANAGEMENT('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in DATENMANAGEMENT.M with the given input arguments.
%
%      DATENMANAGEMENT('Property','Value',...) creates a new DATENMANAGEMENT or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before Datenmanagement_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to Datenmanagement_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help Datenmanagement

% Last Modified by GUIDE v2.5 15-Nov-2011 16:03:05
% Stop Debugger for Error Point
dbstop if error;
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @Datenmanagement_OpeningFcn, ...
                   'gui_OutputFcn',  @Datenmanagement_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before Datenmanagement is made visible.
function Datenmanagement_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to Datenmanagement (see VARARGIN)

% Choose default command line output for Datenmanagement
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes Datenmanagement wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = Datenmanagement_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;



function edit1_Wert1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1_Wert1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit1_Wert1 as text
%        str2double(get(hObject,'String')) returns contents of edit1_Wert1 as a double


% --- Executes during object creation, after setting all properties.
function edit1_Wert1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1_Wert1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end



function edit2_Wert2_Callback(hObject, eventdata, handles)
% hObject    handle to edit2_Wert2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit2_Wert2 as text
%        str2double(get(hObject,'String')) returns contents of edit2_Wert2 as a double


% --- Executes during object creation, after setting all properties.
function edit2_Wert2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit2_Wert2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end



function edit3_Wert3_Callback(hObject, eventdata, handles)
% hObject    handle to edit3_Wert3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of edit3_Wert3 as text
%        str2double(get(hObject,'String')) returns contents of edit3_Wert3 as a double


% --- Executes during object creation, after setting all properties.
function edit3_Wert3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit3_Wert3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton1_Daten_einlesen.
function pushbutton1_Daten_einlesen_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1_Daten_einlesen (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

Daten_einlesen();
guidata(hObject, handles);

% --- Executes on button press in pushbutton2_Datenaenderung_speichern.
function pushbutton2_Datenaenderung_speichern_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton2_Datenaenderung_speichern (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
Datenaenderung();
guidata(hObject, handles);


und die Pushbutton funktion mit den Variablen die ich im Workspace erhalten will:

Code:
%% 15.11.2011 TESTGUI Referenzdaten einzeln ändern ========================
% -------------------------------------------------------------------------
% ----------- Daten über Excel einlesen und geändert speichern ------------
% -------------------------------------------------------------------------


clc;

A = xlsread('Referenzdaten.xls');
set(handles.edit1_Wert1, 'String', A(1,1));
set(handles.edit2_Wert2, 'String', A(2,1));
set(handles.edit3_Wert3, 'String', A(3,1));

Wert1 = str2num(get(handles.edit1_Wert1, 'String'));
Wert2 = str2num(get(handles.edit2_Wert2, 'String'));
Wert3 = str2num(get(handles.edit3_Wert3, 'String'));

B = [Wert1 Wert2 Wert3];
Private Nachricht senden Benutzer-Profile anzeigen


Jan S
Moderator

Moderator


Beiträge: 11.057
Anmeldedatum: 08.07.10
Wohnort: Heidelberg
Version: 2009a, 2016b
     Beitrag Verfasst am: 16.11.2011, 17:32     Titel: Re: Matlab GUI Variablen erhalten
  Antworten mit Zitat      
Hallo morisq,

Zunächst einmal ist dies das gewollte Verhalten. Beim Verlassen einer funktion wird ihr Workspace gelöscht.
Wenn Du von einer anderen Stelle auf Variablen zugreifen möchtest, kannst Du sie als GLOBAL deklarieren. Deutlich sicherer wäre es allerdings, die Variablen per GUIDATA, SETAPPDATA oder SET(FigHandle, 'UserData') im GUI zu speichern und mit den dazugehörigen Methoden wieder auszulesen. Dies wurde hier im Forum mehrfach besprochen und die Suchfunktion sollte Dir weiterhelfen.

Gruß, Jan
Private Nachricht senden Benutzer-Profile anzeigen
 
morisq
Themenstarter

Forum-Century

Forum-Century


Beiträge: 140
Anmeldedatum: 24.06.11
Wohnort: ---
Version: R2010a
     Beitrag Verfasst am: 16.11.2011, 21:34     Titel:
  Antworten mit Zitat      
Hallo Jan,

ich habe schon vor deinerAntwort dern Thread auf Status: beantwortet gesetzt, aber danke für den Hinweis. Ich habs so gelöst das ich die Variablen über handles gespeichert und über guidate(hObject, handles) gespeichert. so kann ich die innerhalb des guis verwenden
Private Nachricht senden Benutzer-Profile anzeigen
 
Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

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
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2025 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

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.