matlab 自定义 函数 Undefined function or method 'ssss' for input arguments o

使用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. 怎么回事呢

第1个回答  2019-08-11
“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);结果就是Q=3;
详细步骤:
1)建立一个m文件
命名为qiuhe
function
SUM=qiuhe(a,b,c)
SUN=a+b+c;
end
2)在命令窗口里面输入
a=1;b=1;c=2;
SUM=qiuhe(a,b,c)
3)结果会显示
SUM=4
希望对你有所帮助
谢谢

...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);结果...

相似回答
大家正在搜