如何用不同数量的参数定义函数?

时间:2019-03-26 11:01:08

标签: parameters sas varying fcmp

我是proc fcmp的新手,我想知道如何在SAS中编写具有不同数量参数(例如whichc()coalesce())的用户定义函数。

如果有人能给我一些提示,我将不胜感激。

1 个答案:

答案 0 :(得分:3)

这是不可能的,尽管您可以按照here所述传递数组(如下所示):

function sas_summation (b[*]) varargs;
   total = 0;
   do i = 1 to dim(b);
       total = total + b[i];
   end;
return(total);
endsub;
run;
quit;

options cmplib=work.functions;

data one;
  input x1-x5;
datalines;
1 2 3 4 5
2 3 4 5 6
4 5 6 7 8
;
run;

data two;
set one;
array temp (5) _temporary_;
array perm2 (*) x1-x5;
do i=1 to dim(temp);
  temp(i)=perm2(i);
end;
drop i;
x=sas_summation(temp);
run;