Suppose I have
proc iml;
x = {1,2,3};
I am interested in computing CDF ('F',1,2, ....) for every element of x. Of course, I can write a loop, but I would like to know the smart way of doing it, i.e. vectorise?
I tried to google but could not find anything, any takers?