Skip to content

2.11 Statistics

These functions take a list of inputs separated by commas and will return the result of the function across all the inputs at each point in time:

function(a,b,..,n)

The order of the inputs is not important

The minimum of all the inputs at each point in time. The syntax for a MAX function is:

MAX(8,7,4) = 8

The minimum of all the inputs at each point in time. The syntax for a MIN function is:

MIN(8,7,4) = 4

The mean of all the inputs at each point in time. The syntax for a MEAN function is:

MEAN(8,7,4) = 6.33

The median of all the inputs at each point in time. The syntax for a MEDIAN function is:

MEDIAN(8,7,4) = 7

The standard deviate of all the inputs at each point in time. The syntax for a STDDEV function is:

STDDEV(8,6,4) = 2

The standard deviate of all the inputs at each point in time. The syntax for a VARIANCE function is:

VARIANCE(8,6,4) = 4