How to resolve "Unrecognised function or variable" when using LOAD function ? ( GUIDE)
显示 更早的评论
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 个评论
Walter Roberson
2021-3-18
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
2021-3-18
Rik
2021-3-18
In addition to Walter's remarks:
You should always load to a struct. That way it is immediately obvious where variables are coming from.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!