PATH:
home
/
lab2454c
/
aficb.com
/
vendor
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Calculation
/
Statistical
<?php namespace PhpOffice\PhpSpreadsheet\Calculation\Statistical; use PhpOffice\PhpSpreadsheet\Calculation\Exception; use PhpOffice\PhpSpreadsheet\Calculation\Functions; class StatisticalValidations { /** * @param mixed $value */ public static function validateFloat($value): float { if (!is_numeric($value)) { throw new Exception(Functions::VALUE()); } return (float) $value; } /** * @param mixed $value */ public static function validateInt($value): int { if (!is_numeric($value)) { throw new Exception(Functions::VALUE()); } return (int) floor((float) $value); } /** * @param mixed $value */ public static function validateBool($value): bool { if (!is_bool($value) && !is_numeric($value)) { throw new Exception(Functions::VALUE()); } return (bool) $value; } }
[+]
Distributions
[-] Averages.php
[edit]
[-] MaxMinBase.php
[edit]
[-] StandardDeviations.php
[edit]
[-] Minimum.php
[edit]
[-] Conditional.php
[edit]
[+]
..
[-] Size.php
[edit]
[-] Deviations.php
[edit]
[-] Trends.php
[edit]
[-] Percentiles.php
[edit]
[-] AggregateBase.php
[edit]
[-] Standardize.php
[edit]
[-] Maximum.php
[edit]
[+]
Averages
[-] Confidence.php
[edit]
[-] StatisticalValidations.php
[edit]
[-] Permutations.php
[edit]
[-] Variances.php
[edit]
[-] Counts.php
[edit]
[-] VarianceBase.php
[edit]