CALL RANEXP Routine

Returns a random variate from an exponential distribution.

Category: Random Number

Syntax

CALL RANEXP(seed,x);

Required Arguments

seed

is the seed value. A new value for seed is returned each time CALL RANEXP is executed.

Range seed < 231 - 1
Note If seed ≤ 0, the time of day is used to initialize the seed stream.
See Seed Values and Comparison of Seed Values in Random-Number Functions and CALL Routines for more information about seed values

x

is a numeric variable. A new value for the random variate x is returned each time CALL RANEXP is executed.

Details

The CALL RANEXP routine updates seed and returns a variate x that is generated from an exponential distribution that has a parameter of 1.
By adjusting the seeds, you can force streams of variates to agree or disagree for some or all of the observations in the same, or in subsequent, DATA steps.
The CALL RANEXP routine uses an inverse transform method applied to a RANUNI uniform variate.
For a discussion and example of an effective use of the random number CALL routines, see Starting, Stopping, and Restarting a Stream.

Comparisons

The CALL RANEXP routine gives greater control of the seed and random number streams than does the RANEXP function.

Example

This example uses the CALL RANEXP routine:
data u1(keep=x);
   seed = 104;
   do i = 1 to 5;
      call ranexp(seed, x); 
      output;
   end;
   call symputx('seed', seed);
run;

data u2(keep=x);
   seed = &seed;
   do i = 1 to 5;
      call ranexp(seed, x); 
      output;
   end;
run;

data all;
   set u1 u2;
   z = ranexp(104);
run;

proc print label;
   label x = 'Separate Streams' z = 'Single Stream';
run;
Output from the CALL RANEXP Routine
Output from the CALL RANEXP Routine

See Also