Previous Page | Next Page

Functions and CALL Routines

LFACT Function



Computes the logarithm of the FACT (factorial) function.
Category: Combinatorial

Syntax
Arguments
Comparisons
Examples
See Also

Syntax

LFACT(n)


Arguments

n

is an integer that represents the total number of elements from which the sample is chosen.


Comparisons

The LFACT function computes the logarithm of the FACT function.


Examples

The following statements produce these results:

SAS Statements Results
x=lfact(5000);

put x;


37591.143509

y=lfact(100);

put y;

363.73937556


See Also

Functions:

FACT Function

Previous Page | Next Page | Top of Page