跳到主要内容

EXPONDIST

Returns the exponential distribution.

Syntax

expression.EXPONDIST(arg1, arg2, arg3);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe value of the x function, a nonnegative number.
arg2RequiredApiRange | ApiName | numberThe lambda parameter value, a positive number.
arg3RequiredApiRange | ApiName | booleanA logical value that determines the function form. If this parameter is true, the function will return the cumulative distribution function, if it is false, it will return the probability density function.

Returns

number

Example

This example shows how to return the exponential distribution.

// How to get the exponential distribution.

// Use function to calculate an exponential distribution.

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
let ans = func.F_DIST(10, 6, 4, false);
worksheet.GetRange("B2").SetValue(ans);