PHI

function PHI(arg1: number = null): number

Description

Returns the value of the density function for a standard normal distribution.

Parameters

arg1numberdefault: null

The number for which the density of the standard normal distribution will be returned.

Returns

number

Try It


const oWorksheet = Api.GetActiveSheet();

//method params
var number = 5;

oWorksheet.GetRange("A1").SetValue(number);

var oFunction = Api.GetWorksheetFunction();
var ans = oFunction.PHI(number);

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

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).