matlab如何定义函数
发布网友
发布时间:2022-04-23 19:34
我来回答
共1个回答
热心网友
时间:2023-09-16 04:56
matlab
中的函数参数个数,是你自己在函数中定义的啊,跟你函数里要调用的外部变量的个数相同。
例如:
主函数:
clc;clear;
sex
=
0;
%
a表示性别,1
表示男,0表示女
age
=
11;
%
b表示岁数
kid(sex,age);
函数kid:
function
high
=
kid(a,b)
%计算10到15岁小孩身高
if(b>=10
&&
b<=15)
if
(a
==
1)
high
=
b*0.1;
fprintf('the
height
of
the
boy
is
%1.3f
m\n',high);
elseif
(a
==
0);
high
=
b*0.105;
fprintf('the
height
of
the
girl
is
%1.3f
m\n',high);
else
fprintf('out
of
sex
range\n');
end
else
fprintf('out
of
age
range\n');
end