使用matlab自定义一个函数 function [jieguo] = qiuhe(a,b,c) %UNTITLED3 Summary of this function goes here % Detailed explanation goes here jieguo=a+b+c; end 运行时出现 Undefined function or method 'ssss' for input arguments o Input argument "a" is undefined. 怎么回事呢
...Undefined function or method 'ssss' for input arguments o_百度知...
“Undefined function or method 'ssss'for input arguments o”这个说明 ssss 不是函数名字根据你的定义 函数名字是 qiuhe “Input argument "a"is undefined.”这个说明你输入的a 是没有定义 也就是没有意义的意思 你得给a赋值 比如a=1;b=1;c=2;然后你再输入Q= q=qiuhe(a,b,c);结果...