跳到主要内容

HYPGEOM_DIST

Returns the hypergeometric distribution.

Syntax

expression.HYPGEOM_DIST(arg1, arg2, arg3, arg4, arg5);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe number of successes in the sample.
arg2RequiredApiRange | ApiName | numberThe size of the sample.
arg3RequiredApiRange | ApiName | numberThe number of successes in the population.
arg4RequiredApiRange | ApiName | numberThe population size.
arg5RequiredApiRange | ApiName | booleanA logical value (-true or -false) that determines the function form.\ If it is -true, the function returns the cumulative distribution function. If it is -false, the function returns the probability mass function.

Returns

number

Example

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.HYPGEOM_DIST(2, 3, 3, 12, true));