Hi all,
at first an example:
PROC IML;
   a = {1 2 3} ; b = {1,2,3}; c = {1 2 3, 2 3 4, 3 4 5}  ;
   ssq_a       = SSQ(a);
   sum_b       = SUM(b);
   median_c    = MEDIAN(c);
      print a b c       ssq_a       sum_b       median_c    ;
 
   std_a = STD(a)    ;
   std_c = STD(c)    ;
      print       std_a       std_c ;
QUIT  ; *proc iml ;
 
My question: In the SAS Online Doc: http://support.sas.com/documentation/cdl/en/imlug/59656/HTML/default/viewer.htm#langref_sect315.htm there is a list of the "Base SAS Functions Accessible from SAS/IML". As you can see, if you run the example above, only some of the listed base functions work, like SUM, SSQ or MEDIAN, but not STD or CV. How can I use the sas base functions like STD, CV,... in IML? 
 
Thank you in advance for every tip, best regards,
saibot