test2.m
上传用户:zjhyt3
上传日期:2007-07-03
资源大小:89k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function res = test2(x,y)
  2. error(nargchk(1,2,nargin));
  3. if nargin == 2
  4.    res = sqrt(x.^2 + y.^2);
  5. else
  6.    res = x;
  7. end