matlab 自定义函数路径找不到问题
matlab可以使用path命令设置搜索路径来自定义函数给多个工程使用
path('/home/matlab/mylib')
在此目录中自定义文件myfunction.m,注意函数名与文件名同名。
进入matlab环境,执行函数找不到,Unrecognized function or variable 'myfunction'.
需要清理缓存再试。
>> which -all myfunction
>> rehash toolboxcache
>> which -all myfunction
/home/matlab/mylib/myfunction.m
分类: 技术