Min

Description

This function is used to returns the minimum value from a set of values. This function can take up to 10 arguments.

Syntax

double Min(dataset vd)

Parameters

vd

A specified column in Origin worksheet.

Return

Return the minimum value from a set of values.

Example

dd=min(col(A));
dd=; // Should return the minimum value of column(A).
y = min(1, 2, 3, 4, 5, 6);
y=; // Should return the minimum value of the dataset y.

See Also

Max, Mean, Total