【发布时间】:2015-10-22 22:41:04
【问题描述】:
我已尝试按照from the docs 的建议使用localfunctions 函数。当我在 MATLAB 命令窗口中执行脚本时,会出现以下错误:
>> athing()
Undefined function or variable 'localfunctions'.
Error in athing (line 2)
fs = localfunctions;
在文件thing.m我写过:
function fs = athing()
fs = localfunctions;
end
function babo()
end
function hidden()
end
我不确定我还能尝试调试什么。我正在使用 MATLAB:8.0.0.783 (R2012b)。
【问题讨论】:
标签: matlab