定义:function [a,b]=example(x1,x2)a=x1;b=x1+x2;注释:a,b是输出参数,x1,x2是形参函数名example必须与m文件名保持一致。
调用:
[a,b]=example(1,2);