Returns the value of the density function for a standard normal distribution.
Name | Type | Description |
arg1 | number | The number for which the density of the standard normal distribution will be returned. |
builder.CreateFile("xlsx"); 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); builder.SaveFile("xlsx", "PHI.xlsx"); builder.CloseFile();