Whileschleife im .m script duch pushbutton aus Gui beenden
MichaelK89
Gast
Beiträge: ---
Anmeldedatum: ---
Wohnort: ---
Version: ---
Verfasst am: 25.02.2019, 14:38
Titel: Whileschleife im .m script duch pushbutton aus Gui beenden
Hallo liebes Forum,
dies ist mein erster Beitrag. Verzeiht mir bitte den ein oder anderen Fehler.
Ich habe schon seit ein paar Tagen Probleme und komme nicht weiter,
Ich habe das Forum schon so gut es ging durchsucht aber leider nichts passendes gefunden bzw überlesen. Wenn dem so sei tut es mir leid.
Zu meinem problem: Ich habe eine Whileschleife geschrieben, welche aufhören soll, wenn einer von zwei Werten erreicht wurde (welches auch gut klappt) oder durch Pushbutton.
Hier der Standard Pushbutton erstellt mit Guide:
Code:
% Pushbutton functionvarargout = asd(varargin) % ASD MATLAB code for asd.fig % ASD, by itself, creates a new ASD or raises the existing % singleton*.
%
% H = ASD returns the handle to a new ASD or the handle to % the existing singleton*.
%
% ASD('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in ASD.M with the given input arguments.
%
% ASD('Property','Value',...) creates a new ASD or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before asd_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to asd_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 asd
% Last Modified by GUIDE v2.5 22-Feb-2019 11:58:52
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @asd_OpeningFcn, ...
'gui_OutputFcn', @asd_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before asd is made visible. function asd_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 asd (see VARARGIN)
% Choose default command line output for asd
handles.output = hObject;
% UIWAIT makes asd wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = asd_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;
% --- Executes on button press in togglebutton1. function togglebutton1_Callback(hObject, eventdata, handles) % hObject handle to togglebutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of togglebutton1
wenn ich das script starte bekomme ich die Fehlermeldung:
Undefined function or variable 'hObject'.
Error in Testlauf2 (line 59)
while S1 < 630 && count < 1000 && get(hObject,'Value')
Ich schätze, dass ich nach der zeile mit "run('asd.m')" und vor der Schleife noch zusätzlich was definieren muss. Habe aber leider keinen Ansatz.
Würde mich sehr über Hilfe freuen.
Mfg,
Michael
MichaelK89
Gast
Beiträge: ---
Anmeldedatum: ---
Wohnort: ---
Version: ---
Verfasst am: 25.02.2019, 16:17
Titel:
Ich habe es jetzt mit einer KeyPressFcn gelöst.
Ich schätze, dass ich es anders mit einer callback function hätte machen müssen. Das verstehe ich aber leider nicht. Also wenn jemand Zeit und Lust hat noch zu Antworten, um meinen Wissensstand zu erweitern kann er es gerne tun. Ist aber nicht mehr notwendig
Schönen Tag noch allen!
Mfg,
Michael
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.