Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样开头的 .m 文件:
function [] = foo(n);
如果用户像foo(5)在命令窗口中那样调用它,就可以了。但是我希望该函数在用户只是调用它时也运行foo,而无需输入 n。我使用数组在 c++ 中处理这个问题argv[],有没有办法在 MATLAB 中做到这一点?
foo(5)
foo
argv[]
谢谢你的时间..
你可以使用nargin和相关的。
nargin