Median

The Median function in Origami Tech identifies the central numeric value in a dataset, useful for trend smoothing and statistical modeling.

median(list[decimal]) -> decimal

Returns decimal

Compute the median of the given list elements

Example:

median([2.2, 2.5, 5.5])2.5

Last updated