stats_stat_binomial_coef

(PECL stats >= 1.0.0) Not documented float stats_stat_binomial_coef ( int $x, int $n ) Parameters: x n Returns: This function is currently not documented; only its argument list is available.

stats_standard_deviation

(PECL stats >= 1.0.0) Returns the standard deviation float stats_standard_deviation ( array $a [, bool $sample = false ] ) Parameters: a The array of data to find the standard deviation for. Note that all values of the array will be cast to float. sample Indicates if a represents a sample of the population; defaults to FALSE.

stats_skew

(PECL stats >= 1.0.0) Computes the skewness of the data in the array float stats_skew ( array $a ) Parameters: a Returns: This function is currently not documented; only its argument list is available.

stats_rand_setall

(PECL stats >= 1.0.0) Not documented void stats_rand_setall ( int $iseed1, int $iseed2 ) Parameters: iseed1 iseed2 Returns: This function is currently not documented; only its argument list is available.

stats_rand_ranf

(PECL stats >= 1.0.0) Returns a random floating point number from a uniform distribution over 0 - 1 (endpoints of this interval are not returned) using the current generator float stats_rand_ranf ( void ) Returns: This function is currently not documented; only its argument list is available.

stats_rand_phrase_to_seeds

(PECL stats >= 1.0.0) generate two seeds for the RGN random number generator array stats_rand_phrase_to_seeds ( string $phrase ) Parameters: phrase Returns: This function is currently not documented; only its argument list is available.

stats_rand_get_seeds

(PECL stats >= 1.0.0) Not documented array stats_rand_get_seeds ( void ) Returns: This function is currently not documented; only its argument list is available.

stats_rand_gen_t

(PECL stats >= 1.0.0) Generates a single random deviate from a T distribution float stats_rand_gen_t ( float $df ) Parameters: df Returns: This function is currently not documented; only its argument list is available.

stats_rand_gen_normal

(PECL stats >= 1.0.0) Generates a single random deviate from a normal distribution with mean, av, and standard deviation, sd (sd >= 0). Method : Renames SNORM from TOMS as slightly modified by BWB to use RANF instead of SUNIF. float stats_rand_gen_normal ( float $av, float $sd ) Parameters: av sd Returns:

stats_rand_gen_noncentral_t

(PECL stats >= 1.0.0) Generates a single random deviate from a noncentral T distribution float stats_rand_gen_noncentral_t ( float $df, float $xnonc ) Parameters: df xnonc Returns: This function is currently not documented; only its argument list is available.