how to load a function in AppDesigner?
8 次查看(过去 30 天)
显示 更早的评论
I am a beginner to appdesigner and i am trying to design my matlab code to load some data which is
load([PTH '/Data.mat']);
the warning I am receiving is "To avoid conflicts with functions on the path, specify variables to load from file." How can I remove thes warning.
采纳的回答
TADA
2020-5-18
Seems to me that the warning is warning you against loading data into the workspace without controlling the variable names. Try to use an output variable so that the data is returned as a struct into that variable instead:
data = load([PTH '/Data.mat']);
% and while your at it, also use fullfile
% instead of concating, to make your code
% work on other platforms as well
data = load(fullfile(PTH, 'Data.mat'));
3 个评论
TADA
2020-7-28
The problem is either with sFOLDERS or app.
One of them is not what you think it is in the particular workspace where this code is running.
You should debug this and inspect these variables on runtime. Either place a breakpoint in that position, or activate the pause on error option, then run your program and activate this method.
Also, concating the folder names into a cell array like that is meaningless, as placing a comma separated list between square or curly bracers is horizontal concatenation.
% these two lines of code
% give identical output
% but the first one is confusing
% and moreover, Matlab doesn't
% appreciate command chaining much
% so it's also an opening for
% future mishaps
C1 = {sFOLDERS(:).name} % this won't be a column cell array after all
C2 = {sFOLDERS.name}
And last but not least, this is a new issue, so you should probably have opened a new question for that one rather than adding a question on an answered thread which won't attract the attention of the forum problem solvers. And also won't show up in future searches
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!