Function函数

示例1、绝对值含数
function a = my_abs(x)
if x >= 0
    a = x;
else
    a = -1*x;
end

你可能感兴趣的:(Function函数)