跳到主要内容

NORMSINV

返回标准正态累积分布的逆函数(平均值为零,标准偏差为一)。

语法

expression.NORMSINV(arg1);

expression - 表示 ApiWorksheetFunction 类的变量。

参数

名称必需/可选数据类型默认值描述
arg1必需ApiRange | ApiName | number与正态分布对应的概率,一个介于 0 和 1 之间(含 0 和 1)的数字。

返回值

number

示例

此示例演示如何返回标准正态累积分布的反函数(平均值为零,标准差为一)。

// How to calculate the inverse of the standard normal cumulative distribution.

// Use a function to get the inverse of the standard normal cumulative distribution.

const worksheet = Api.GetActiveSheet();

worksheet.GetRange("A1").SetValue(0.25);

//method params
let value = worksheet.GetRange("A1").GetValue();

let func = Api.WorksheetFunction;
let ans = func.NORMSINV(value);

worksheet.GetRange("C1").SetValue(ans);