standardize
Z-score for a value given the population mean and standard deviation.
Syntax
Section titled “Syntax”v = standardize(x, mean, standard_dev)Description
Section titled “Description”Returns (x - mean) / standard_dev — converts a value to its number of standard deviations above (or below) the mean. Useful for cross-distribution comparison.
Example
Section titled “Example”standardize(10, 5, 2) % 2.5See also
Section titled “See also”norm_dist— Normal-distribution PDF or CDF.norm_s_dist— Standard-normal PDF or CDF.