[][src]Crate z_table

Functions

lookup

Lookup function for the Z table. Given a z value, returns the corresponding value of the cumulative distribution function of the standard normal distribution. The input values may be negative.

lookup_with

Lookup function for the Z table. Given a z value, returns the corresponding value of the cumulative distribution function of the normal distribution with the provided mean and standard derivation. The input values may be negative.

reverse_lookup

Reverse lookup function for the Z table. Given a value of the cumulative distribution function of the standard normal distribution, returns the corresponding z value. Only inputs between and including 0 and 1 are allowed.

reverse_lookup_with

Reverse lookup function for the Z table. Given a value of the cumulative distribution function of the normal distribution with the provided mean and standard derivation, returns the corresponding z value. Only inputs between and including 0 and 1 are allowed.