请问各位创建函数 y = fun min (a,b,c),用来返回任意三个数中值最小的一个。(QAQ自学)
function y=min(a,b,c) if a<b if a<c y=a; else y=c; end else if b<c y=b; else y=b; end end end