How to resolve "Unrecognised function or variable" when using LOAD function ? ( GUIDE)
Show older comments
load ('rawsource.mat');
a = get(handles.popupmenu4,'Value');
switch a
case 1
sound (MaryHadAlittleLamb,fs);
case 2
sound (TwinkleTwinkleLittleStar,fs);
otherwise
sound (OldMacDonald,fs);
end
So I loaded a .mat file into the workplace and for some reason, variable TTLS and OMD were not regconised by MATLAB but MHALL was able to be sounded as expected. This is a callback codes for popupmenu that when user selects their choice, the selected song will play. I have also ensured that there are no typos. Also, the variable TTLS and OMD were also appearing in .mat file as expected. How can I solve this problem ?
Unrecognized function or variable 'TwinkleTwinkleLittleStar'.
Error in testing202>popupmenu4_Callback (line 449)
sound (TwinkleTwinkleLittleStar,fs);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in testing202 (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in
matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)testing202('popupmenu4_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback.
3 Comments
Walter Roberson
on 18 Mar 2021
For debugging, in your code immediately after the load(), add the debugging line
whos
and see which variables exist in the workspace.
Note that for this purpose the load() needs to be in the same function that uses the variables, unless you take care otherwise:
Teo Say Yee
on 18 Mar 2021
Rik
on 18 Mar 2021
In addition to Walter's remarks:
You should always load to a struct. That way it is immediately obvious where variables are coming from.
Answers (0)
Categories
Find more on Audio I/O and Waveform Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!