Hi alle mit einander, wie der Name schon verrät, bin ich noch eine Anfänger was Matlab betrifft.
Ich habe folgendes Problem. Und zwar, ich übergebe eine Matrix an das GUI und möchte diese dann durch den Benutzer des GUI verändern lassen.
Wenn dies geschehen ist, soll diese veränderte Matrix / Tabelle wieder zurückgeben werden, damit ich mit dieser weiterrechnen kann.
Mein Problem ist, dass ich anstelle einer Matrix / Tabelle nur einen Wert zurückbekomme.
Info:
Die Eingabe im Command Window zum Aufrufen der GUI ist:
% --- Executes just before texteingabe is made visible. function texteingabe_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 texteingabe (see VARARGIN)
% UIWAIT makes texteingabe wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = texteingabe_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.texte;
function eingabe_Callback(hObject, eventdata, handles) % hObject handle to eingabe (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 eingabe as text % str2double(get(hObject,'String')) returns contents of eingabe as a double set(handles.ausgabe,'string',handles.geschrieben);
handles.texte =set(handles.ausgabe,'string',handles.geschrieben);
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties. function eingabe_CreateFcn(hObject, eventdata, handles) % hObject handle to eingabe (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. ifispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');
end
Seltsam ist auch, egal wie groß die Matrix ist, noch wie die Werte sind, beträgt der Rückgabewert immer 177.0028...
Vielleicht hilft dies beider Antwort.
Ich danke Euch schon im Voraus und hoffe, dass Ihr mir helfen könnt.
function eingabe_Callback(hObject, eventdata, handles) % hObject handle to eingabe (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 eingabe as text % str2double(get(hObject,'String')) returns contents of eingabe as a double set(handles.ausgabe,'string',handles.geschrieben);
% get statt set
handles.texte = get(handles.ausgabe,'string');
guidata(hObject,handles);
Allerdings verstehe ich den Ablauf nicht wirklich. Erst weist du einer ausgabe eine variable geschrieben zu, um sie danach einer anderen Variable Namens texte zuzuweisen. Das wäre doch das gleiche wie...
Sorry, mein Fehler und danke für die schnelle Antwort. Ich habe nur den falschen Code hochgeladen.
Das ist der eigentlich Code zu meiner Frage. Den anderen einfach vernachlässigen.
Code:
% --- Executes just before tabellentest is made visible. function tabellentest_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 tabellentest (see VARARGIN)
% Choose default command line output for tabellentest
handles.output = hObject;
handles.uebergebene_tabelle= varargin{1};
set(handles.testliste,'data',handles.uebergebene_tabelle);
% Update handles structure guidata(hObject, handles);
% UIWAIT makes tabellentest wait for user response (see UIRESUME) % uiwait(handles.figure1);
uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = tabellentest_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.testliste;
% --- Executes on button press in eingabe_bestaetigen. function eingabe_bestaetigen_Callback(hObject, eventdata, handles) % hObject handle to eingabe_bestaetigen (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% --- Executes when entered data in editable cell(s) in testliste. function testliste_CellEditCallback(hObject, eventdata, handles) % hObject handle to testliste (see GCBO) % eventdata structure with the following fields (see UITABLE) % Indices: row and column indices of the cell(s) edited % PreviousData: previous data for the cell(s) edited % EditData: string(s) entered by the user % NewData: EditData or its converted form set on the Data property. Empty if Data was not changed % Error: error string when failed to convert EditData to appropriate value for Data % handles structure with handles and user data (see GUIDATA)
handles.testliste =get(hObject, 'data');
Aber 'data' gibt es soweit ich weiß nicht. Der Zugriff müsste dir doch eine Fehlermeldung bringen. Was meinst du mit sehen? Willst du die Matrix in ein Text Objekt laden? Dann muss es heißen...
wobei der Übergabewert natürlich als string vorliegen muss. Bei mir funktioniert jedenfalls der Input und Output einer Matrix, wie du es beschrieben hast. Sonst mal bitte die Fehlermeldung posten und auch den gesamten Code der Gui.
Eine Fehlermeldung kommt halt nicht, sondern nur ein double in Höhe 185.0028...
Mit sehen meine ich,dass die übergebene Tabelle dem Nutzer angezeigt wird, damit er sie dann bearbeiten kann.
Also den Parameter 'Data' finde ich im Inspector( siehe Bildanhang) und hinter dem steckt auch die Matrix / Tabelle.
Code:
functionvarargout = tabellentest(varargin) % TABELLENTEST MATLAB code for tabellentest.fig % TABELLENTEST, by itself, creates a new TABELLENTEST or raises the existing % singleton*.
%
% H = TABELLENTEST returns the handle to a new TABELLENTEST or the handle to % the existing singleton*.
%
% TABELLENTEST('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in TABELLENTEST.M with the given input arguments.
%
% TABELLENTEST('Property','Value',...) creates a new TABELLENTEST or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before tabellentest_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to tabellentest_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 tabellentest
% Last Modified by GUIDE v2.5 26-Sep-2014 15:08:27
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @tabellentest_OpeningFcn, ...
'gui_OutputFcn', @tabellentest_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before tabellentest is made visible. function tabellentest_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 tabellentest (see VARARGIN)
% Choose default command line output for tabellentest
handles.output = hObject;
handles.uebergebene_tabelle= varargin{1};
set(handles.testliste,'data',handles.uebergebene_tabelle);
% Update handles structure guidata(hObject, handles);
% UIWAIT makes tabellentest wait for user response (see UIRESUME) % uiwait(handles.figure1);
uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = tabellentest_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.testliste;
% --- Executes on button press in eingabe_bestaetigen. function eingabe_bestaetigen_Callback(hObject, eventdata, handles) % hObject handle to eingabe_bestaetigen (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% --- Executes when entered data in editable cell(s) in testliste. function testliste_CellEditCallback(hObject, eventdata, handles) % hObject handle to testliste (see GCBO) % eventdata structure with the following fields (see UITABLE) % Indices: row and column indices of the cell(s) edited % PreviousData: previous data for the cell(s) edited % EditData: string(s) entered by the user % NewData: EditData or its converted form set on the Data property. Empty if Data was not changed % Error: error string when failed to convert EditData to appropriate value for Data % handles structure with handles and user data (see GUIDATA)
handles.testliste =get(hObject, 'data');
Der Rückgabewert von 185.. bezieht sich auf das Objekt " testliste", wie ja der tag von der Tabelle heißt. Ich habe aber keine Ahnung was der wirklich aussagt.
Du darfst die Variable nicht testliste nennen, wenn du Änderungen abspeichern willst oder ihn als Rückgabewert nutzen.
Code:
% --- Executes just before test is made visible. function test_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 test (see VARARGIN)
% Choose default command line output for test
handles.output = hObject;
handles.uebergebene_tabelle = varargin{1};
handles.user_input = handles.uebergebene_tabelle;
set(handles.testliste,'data',handles.uebergebene_tabelle);
% Update handles structure guidata(hObject, handles);
% --- Outputs from this function are returned to the command line. functionvarargout = test_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.user_input;
% UIWAIT makes test wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Executes when entered data in editable cell(s) in testliste. function testliste_CellEditCallback(hObject, eventdata, handles) % hObject handle to testliste (see GCBO) % eventdata structure with the following fields (see UITABLE) % Indices: row and column indices of the cell(s) edited % PreviousData: previous data for the cell(s) edited % EditData: string(s) entered by the user % NewData: EditData or its converted form set on the Data property. Empty if Data was not changed % Error: error string when failed to convert EditData to appropriate value for Data % handles structure with handles and user data (see GUIDATA)
handles.user_input = get(handles.testliste,'data');
% save the changes to the structure guidata(gcbo,handles);
Danke dir, jetzt klappt es endlich.
Damit hast du mir sehr geholfen.
Echt gutes Forum, macht weiter so.
Einstellungen und Berechtigungen
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.