关于MATLAB函数不可用问题。??? Undefined function or method 'minfo' for input arguments of type 'double'.

使用MATLAB过程中,需要使用vrho函数求矩阵谱半径,但运行此函数出现错误提示:

??? Undefined function or method 'minfo' for input arguments of type 'double'.

网上查找问题解决方案,说函数不在当前路径,于是使用which vrho 查看、help vrho 查看、doc帮助文件搜索vrho函数,没有查找结果。

发现问题在于根本没有此函数。本人使用的是MATLAB 7.9.0(R2009b),考虑是版本问题 导致函数缺失。

解决办法:

在以下网站找到了vrho函数的源代码(Apache开源代码)
http://www.texacker.org/~furao/hacking/dissertation/MATLAB/Term_6/sp/BB/mutools/commands/vrho.m.html
 自己建了一个vrho.m文件,然后复制了代码。运行vrho函数,提示以下错误:
??? Undefined function or method 'minfo' for input arguments of type 'double'.


Error in ==> vrho at 18
 [mtype,mrows,mcols,mnum] = minfo(matin);

查看代码18行,发现函数vrho代码中调用了minfo函数,出现了同样的函数未定义问题,于是在以下网址中复制minfo函数源码。(Apache开源代码)
http://www.texacker.org/~furao/hacking/dissertation/MATLAB/Term_6/sp/BB/mutools/commands/minfo.m.html
同样建立minfo.m文件,再次运行vrho函数,则运行成功!

你可能感兴趣的:(MATLAB,matlab,数值分析,开源代码,vrho)