Undefined function or variable 'AppName'. ??? why ???
1 次查看(过去 30 天)
显示 更早的评论
if Sign == 1
if appm==0
x{end+1,1}.AppName=aa1{selA,1}.Type;
status='[On]';
dataOn=i-7;
app=AppName;
appm=1;
end
SignStr = '[On]';
iCount = iCount + 1;
if ~isempty(r{selA,1})
r{selA,1} = r{selA,1} + 1;
else
r{selA,1} = 1;
end
else
if x{end}.AppName == aa1{selA,1}.Type
AppName=aa1{selA,1}.Type;
status='[Off]';
dataOff=i-7;
end
0 个评论
采纳的回答
madhan ravi
2018-12-12
编辑:madhan ravi
2018-12-12
It likely visible that you have a fieldname AppName from the if statement but then in the next step you assign AppName as if it is defined to app perhaps you are meant to assign with dot indexing like you did in if statement with struct x{...}.AppName
6 个评论
madhan ravi
2018-12-12
编辑:madhan ravi
2018-12-12
It's clearly a variable but you're treating it as a struct change your lines to below:
dataOn(end-1) and the next dataOn(end)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!