referring to a function that does not exist GUI
Mostra commenti meno recenti
Hi I've created a GUI and I used an element that I later deleted (called Tachycardia). I keep getting this error whenever I run my app, the error relates to the creat function of that deleted object. I searched in my code and I can't find any "Tachcardia" statement and I don't understand where is it referring to. Here is the error syntax:
Undefined function or variable 'Tahycardia_CreateFcn'.
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in Fetal_monitoring_simulator3 (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)Fetal_monitoring_simulator3('Tahycardia_CreateFcn',hObject,eventdata,guidata(hObject))
Here is line 42 that the code is referring to
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:}); %%line 42
end
Risposta accettata
Più risposte (1)
Swathik Kurella Janardhan
il 19 Apr 2017
0 voti
You can try executing the following code to rehash your toolbox cache which could resolve the issue:
>> rehash toolboxcache
1 Commento
isra
il 20 Apr 2017
Categorie
Scopri di più su Entering Commands in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
