You are here

public static function PHPExcel_Calculation_Statistical::NORMSINV in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php \PHPExcel_Calculation_Statistical::NORMSINV()

* NORMSINV * * Returns the inverse of the standard normal cumulative distribution * *

Parameters

float $value: * @return float

2 calls to PHPExcel_Calculation_Statistical::NORMSINV()
PHPExcel_Calculation_Statistical::CONFIDENCE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* CONFIDENCE * * Returns the confidence interval for a population mean * *
PHPExcel_Calculation_Statistical::LOGINV in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* LOGINV * * Returns the inverse of the normal cumulative distribution * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php, line 2593

Class

PHPExcel_Calculation_Statistical
PHPExcel_Calculation_Statistical

Code

public static function NORMSINV($value) {
  return self::NORMINV($value, 0, 1);
}