Stata 11 help for min()
help min()
-------------------------------------------------------------------------------
Title
[D] functions -- Functions
Mathematical function
min(x1,x2,...,xn)
Domain x1: -8e+307 to 8e+307 and missing
Domain x2: -8e+307 to 8e+307 and missing
...
Domain xn: -8e+307 to 8e+307 and missing
Range: -8e+307 to 8e+307 and missing
Description: returns the minimum value of x1, x2, ..., xn. Unless
all arguments are missing, missing values are
ignored.
min(2,10,.,7) = 2
min(.,.,.) = .
Also see
Manual: [D] functions
Help: [D] functions, [D] functions (math functions)
|