View source
<?php
if (!defined('PHPEXCEL_ROOT')) {
define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
require PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php';
}
require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/trendClass.php';
define('LOG_GAMMA_X_MAX_VALUE', 2.55E+305);
define('XMININ', 2.23E-308);
define('EPS', 2.22E-16);
define('SQRT2PI', 2.5066282746310007);
class PHPExcel_Calculation_Statistical {
private static function _checkTrendArrays(&$array1, &$array2) {
if (!is_array($array1)) {
$array1 = array(
$array1,
);
}
if (!is_array($array2)) {
$array2 = array(
$array2,
);
}
$array1 = PHPExcel_Calculation_Functions::flattenArray($array1);
$array2 = PHPExcel_Calculation_Functions::flattenArray($array2);
foreach ($array1 as $key => $value) {
if (is_bool($value) || is_string($value) || is_null($value)) {
unset($array1[$key]);
unset($array2[$key]);
}
}
foreach ($array2 as $key => $value) {
if (is_bool($value) || is_string($value) || is_null($value)) {
unset($array1[$key]);
unset($array2[$key]);
}
}
$array1 = array_merge($array1);
$array2 = array_merge($array2);
return True;
}
private static function _beta($p, $q) {
if ($p <= 0.0 || $q <= 0.0 || $p + $q > LOG_GAMMA_X_MAX_VALUE) {
return 0.0;
}
else {
return exp(self::_logBeta($p, $q));
}
}
private static function _incompleteBeta($x, $p, $q) {
if ($x <= 0.0) {
return 0.0;
}
elseif ($x >= 1.0) {
return 1.0;
}
elseif ($p <= 0.0 || $q <= 0.0 || $p + $q > LOG_GAMMA_X_MAX_VALUE) {
return 0.0;
}
$beta_gam = exp(0 - self::_logBeta($p, $q) + $p * log($x) + $q * log(1.0 - $x));
if ($x < ($p + 1.0) / ($p + $q + 2.0)) {
return $beta_gam * self::_betaFraction($x, $p, $q) / $p;
}
else {
return 1.0 - $beta_gam * self::_betaFraction(1 - $x, $q, $p) / $q;
}
}
private static $_logBetaCache_p = 0.0;
private static $_logBetaCache_q = 0.0;
private static $_logBetaCache_result = 0.0;
private static function _logBeta($p, $q) {
if ($p != self::$_logBetaCache_p || $q != self::$_logBetaCache_q) {
self::$_logBetaCache_p = $p;
self::$_logBetaCache_q = $q;
if ($p <= 0.0 || $q <= 0.0 || $p + $q > LOG_GAMMA_X_MAX_VALUE) {
self::$_logBetaCache_result = 0.0;
}
else {
self::$_logBetaCache_result = self::_logGamma($p) + self::_logGamma($q) - self::_logGamma($p + $q);
}
}
return self::$_logBetaCache_result;
}
private static function _betaFraction($x, $p, $q) {
$c = 1.0;
$sum_pq = $p + $q;
$p_plus = $p + 1.0;
$p_minus = $p - 1.0;
$h = 1.0 - $sum_pq * $x / $p_plus;
if (abs($h) < XMININ) {
$h = XMININ;
}
$h = 1.0 / $h;
$frac = $h;
$m = 1;
$delta = 0.0;
while ($m <= MAX_ITERATIONS && abs($delta - 1.0) > PRECISION) {
$m2 = 2 * $m;
$d = $m * ($q - $m) * $x / (($p_minus + $m2) * ($p + $m2));
$h = 1.0 + $d * $h;
if (abs($h) < XMININ) {
$h = XMININ;
}
$h = 1.0 / $h;
$c = 1.0 + $d / $c;
if (abs($c) < XMININ) {
$c = XMININ;
}
$frac *= $h * $c;
$d = -($p + $m) * ($sum_pq + $m) * $x / (($p + $m2) * ($p_plus + $m2));
$h = 1.0 + $d * $h;
if (abs($h) < XMININ) {
$h = XMININ;
}
$h = 1.0 / $h;
$c = 1.0 + $d / $c;
if (abs($c) < XMININ) {
$c = XMININ;
}
$delta = $h * $c;
$frac *= $delta;
++$m;
}
return $frac;
}
private static $_logGammaCache_result = 0.0;
private static $_logGammaCache_x = 0.0;
private static function _logGamma($x) {
static $lg_d1 = -0.5772156649015329;
static $lg_d2 = 0.42278433509846713;
static $lg_d4 = 1.791759469228055;
static $lg_p1 = array(
4.945235359296727,
201.8112620856775,
2290.8383738313464,
11319.672059033808,
28557.246356716354,
38484.962284437934,
26377.487876241954,
7225.813979700288,
);
static $lg_p2 = array(
4.974607845568932,
542.4138599891071,
15506.93864978365,
184793.29044456323,
1088204.7694688288,
3338152.96798703,
5106661.678927353,
3074109.0548505397,
);
static $lg_p4 = array(
14745.0216605994,
2426813.3694867045,
121475557.40450932,
2663432449.630977,
29403789566.34554,
170266573776.5399,
492612579337.7431,
560625185622.3951,
);
static $lg_q1 = array(
67.48212550303778,
1113.3323938571993,
7738.757056935398,
27639.870744033407,
54993.102062261576,
61611.22180066002,
36351.2759150194,
8785.536302431014,
);
static $lg_q2 = array(
183.03283993705926,
7765.049321445006,
133190.38279660742,
1136705.8213219696,
5267964.117437947,
13467014.543111017,
17827365.303532742,
9533095.591844354,
);
static $lg_q4 = array(
2690.5301758708993,
639388.5654300093,
41355999.30241388,
1120872109.616148,
14886137286.788137,
101680358627.24382,
341747634550.73773,
446315818741.9713,
);
static $lg_c = array(
-0.001910444077728,
0.0008417138778129501,
-0.0005952379913043012,
0.0007936507935003503,
-0.0027777777777776816,
0.08333333333333333,
0.0057083835261,
);
static $lg_frtbig = 2.25E+76;
static $pnt68 = 0.6796875;
if ($x == self::$_logGammaCache_x) {
return self::$_logGammaCache_result;
}
$y = $x;
if ($y > 0.0 && $y <= LOG_GAMMA_X_MAX_VALUE) {
if ($y <= EPS) {
$res = -log(y);
}
elseif ($y <= 1.5) {
if ($y < $pnt68) {
$corr = -log($y);
$xm1 = $y;
}
else {
$corr = 0.0;
$xm1 = $y - 1.0;
}
if ($y <= 0.5 || $y >= $pnt68) {
$xden = 1.0;
$xnum = 0.0;
for ($i = 0; $i < 8; ++$i) {
$xnum = $xnum * $xm1 + $lg_p1[$i];
$xden = $xden * $xm1 + $lg_q1[$i];
}
$res = $corr + $xm1 * ($lg_d1 + $xm1 * ($xnum / $xden));
}
else {
$xm2 = $y - 1.0;
$xden = 1.0;
$xnum = 0.0;
for ($i = 0; $i < 8; ++$i) {
$xnum = $xnum * $xm2 + $lg_p2[$i];
$xden = $xden * $xm2 + $lg_q2[$i];
}
$res = $corr + $xm2 * ($lg_d2 + $xm2 * ($xnum / $xden));
}
}
elseif ($y <= 4.0) {
$xm2 = $y - 2.0;
$xden = 1.0;
$xnum = 0.0;
for ($i = 0; $i < 8; ++$i) {
$xnum = $xnum * $xm2 + $lg_p2[$i];
$xden = $xden * $xm2 + $lg_q2[$i];
}
$res = $xm2 * ($lg_d2 + $xm2 * ($xnum / $xden));
}
elseif ($y <= 12.0) {
$xm4 = $y - 4.0;
$xden = -1.0;
$xnum = 0.0;
for ($i = 0; $i < 8; ++$i) {
$xnum = $xnum * $xm4 + $lg_p4[$i];
$xden = $xden * $xm4 + $lg_q4[$i];
}
$res = $lg_d4 + $xm4 * ($xnum / $xden);
}
else {
$res = 0.0;
if ($y <= $lg_frtbig) {
$res = $lg_c[6];
$ysq = $y * $y;
for ($i = 0; $i < 6; ++$i) {
$res = $res / $ysq + $lg_c[$i];
}
}
$res /= $y;
$corr = log($y);
$res = $res + log(SQRT2PI) - 0.5 * $corr;
$res += $y * ($corr - 1.0);
}
}
else {
$res = MAX_VALUE;
}
self::$_logGammaCache_x = $x;
self::$_logGammaCache_result = $res;
return $res;
}
private static function _incompleteGamma($a, $x) {
static $max = 32;
$summer = 0;
for ($n = 0; $n <= $max; ++$n) {
$divisor = $a;
for ($i = 1; $i <= $n; ++$i) {
$divisor *= $a + $i;
}
$summer += pow($x, $n) / $divisor;
}
return pow($x, $a) * exp(0 - $x) * $summer;
}
private static function _gamma($data) {
if ($data == 0.0) {
return 0;
}
static $p0 = 1.000000000190015;
static $p = array(
1 => 76.18009172947146,
2 => -86.50532032941678,
3 => 24.01409824083091,
4 => -1.231739572450155,
5 => 0.001208650973866179,
6 => -5.395239384953E-6,
);
$y = $x = $data;
$tmp = $x + 5.5;
$tmp -= ($x + 0.5) * log($tmp);
$summer = $p0;
for ($j = 1; $j <= 6; ++$j) {
$summer += $p[$j] / ++$y;
}
return exp(0 - $tmp + log(SQRT2PI * $summer / $x));
}
private static function _inverse_ncdf($p) {
static $a = array(
1 => -39.69683028665376,
2 => 220.9460984245205,
3 => -275.9285104469687,
4 => 138.357751867269,
5 => -30.66479806614716,
6 => 2.506628277459239,
);
static $b = array(
1 => -54.47609879822406,
2 => 161.5858368580409,
3 => -155.6989798598866,
4 => 66.80131188771972,
5 => -13.28068155288572,
);
static $c = array(
1 => -0.007784894002430293,
2 => -0.3223964580411365,
3 => -2.400758277161838,
4 => -2.549732539343734,
5 => 4.374664141464968,
6 => 2.938163982698783,
);
static $d = array(
1 => 0.007784695709041462,
2 => 0.3224671290700398,
3 => 2.445134137142996,
4 => 3.754408661907416,
);
$p_low = 0.02425;
$p_high = 1 - $p_low;
if (0 < $p && $p < $p_low) {
$q = sqrt(-2 * log($p));
return ((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1);
}
elseif ($p_low <= $p && $p <= $p_high) {
$q = $p - 0.5;
$r = $q * $q;
return ((((($a[1] * $r + $a[2]) * $r + $a[3]) * $r + $a[4]) * $r + $a[5]) * $r + $a[6]) * $q / ((((($b[1] * $r + $b[2]) * $r + $b[3]) * $r + $b[4]) * $r + $b[5]) * $r + 1);
}
elseif ($p_high < $p && $p < 1) {
$q = sqrt(-2 * log(1 - $p));
return -((((($c[1] * $q + $c[2]) * $q + $c[3]) * $q + $c[4]) * $q + $c[5]) * $q + $c[6]) / (((($d[1] * $q + $d[2]) * $q + $d[3]) * $q + $d[4]) * $q + 1);
}
return PHPExcel_Calculation_Functions::NULL();
}
private static function _inverse_ncdf2($prob) {
$a1 = 2.50662823884;
$a2 = -18.61500062529;
$a3 = 41.39119773534;
$a4 = -25.44106049637;
$b1 = -8.4735109309;
$b2 = 23.08336743743;
$b3 = -21.06224101826;
$b4 = 3.13082909833;
$c1 = 0.337475482272615;
$c2 = 0.976169019091719;
$c3 = 0.160797971491821;
$c4 = 0.0276438810333863;
$c5 = 0.0038405729373609;
$c6 = 0.0003951896511919;
$c7 = 3.21767881768E-5;
$c8 = 2.888167364E-7;
$c9 = 3.960315187E-7;
$y = $prob - 0.5;
if (abs($y) < 0.42) {
$z = $y * $y;
$z = $y * ((($a4 * $z + $a3) * $z + $a2) * $z + $a1) / (((($b4 * $z + $b3) * $z + $b2) * $z + $b1) * $z + 1);
}
else {
if ($y > 0) {
$z = log(-log(1 - $prob));
}
else {
$z = log(-log($prob));
}
$z = $c1 + $z * ($c2 + $z * ($c3 + $z * ($c4 + $z * ($c5 + $z * ($c6 + $z * ($c7 + $z * ($c8 + $z * $c9)))))));
if ($y < 0) {
$z = -$z;
}
}
return $z;
}
private static function _inverse_ncdf3($p) {
$split1 = 0.425;
$split2 = 5;
$const1 = 0.180625;
$const2 = 1.6;
$a0 = 3.3871328727963665;
$a1 = 133.14166789178438;
$a2 = 1971.5909503065513;
$a3 = 13731.69376550946;
$a4 = 45921.95393154987;
$a5 = 67265.77092700871;
$a6 = 33430.57558358813;
$a7 = 2509.0809287301227;
$b1 = 42.31333070160091;
$b2 = 687.1870074920579;
$b3 = 5394.196021424751;
$b4 = 21213.794301586597;
$b5 = 39307.89580009271;
$b6 = 28729.085735721943;
$b7 = 5226.495278852854;
$c0 = 1.4234371107496835;
$c1 = 4.630337846156546;
$c2 = 5.769497221460691;
$c3 = 3.6478483247632045;
$c4 = 1.2704582524523684;
$c5 = 0.2417807251774506;
$c6 = 0.022723844989269184;
$c7 = 0.0007745450142783414;
$d1 = 2.053191626637759;
$d2 = 1.6763848301838038;
$d3 = 0.6897673349851;
$d4 = 0.14810397642748008;
$d5 = 0.015198666563616457;
$d6 = 0.0005475938084995345;
$d7 = 1.0507500716444169E-9;
$e0 = 6.657904643501103;
$e1 = 5.463784911164114;
$e2 = 1.7848265399172913;
$e3 = 0.29656057182850487;
$e4 = 0.026532189526576124;
$e5 = 0.0012426609473880784;
$e6 = 2.7115555687434876E-5;
$e7 = 2.0103343992922881E-7;
$f1 = 0.599832206555888;
$f2 = 0.1369298809227358;
$f3 = 0.014875361290850615;
$f4 = 0.0007868691311456133;
$f5 = 1.8463183175100548E-5;
$f6 = 1.421511758316446E-7;
$f7 = 2.0442631033899397E-15;
$q = $p - 0.5;
if (abs($q) <= split1) {
$R = $const1 - $q * $q;
$z = $q * ((((((($a7 * $R + $a6) * $R + $a5) * $R + $a4) * $R + $a3) * $R + $a2) * $R + $a1) * $R + $a0) / ((((((($b7 * $R + $b6) * $R + $b5) * $R + $b4) * $R + $b3) * $R + $b2) * $R + $b1) * $R + 1);
}
else {
if ($q < 0) {
$R = $p;
}
else {
$R = 1 - $p;
}
$R = pow(-log($R), 2);
if ($R <= $split2) {
$R = $R - $const2;
$z = ((((((($c7 * $R + $c6) * $R + $c5) * $R + $c4) * $R + $c3) * $R + $c2) * $R + $c1) * $R + $c0) / ((((((($d7 * $R + $d6) * $R + $d5) * $R + $d4) * $R + $d3) * $R + $d2) * $R + $d1) * $R + 1);
}
else {
$R = $R - $split2;
$z = ((((((($e7 * $R + $e6) * $R + $e5) * $R + $e4) * $R + $e3) * $R + $e2) * $R + $e1) * $R + $e0) / ((((((($f7 * $R + $f6) * $R + $f5) * $R + $f4) * $R + $f3) * $R + $f2) * $R + $f1) * $R + 1);
}
if ($q < 0) {
$z = -$z;
}
}
return $z;
}
public static function AVEDEV() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGE($aArgs);
if ($aMean != PHPExcel_Calculation_Functions::DIV0()) {
$aCount = 0;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue)) {
$returnValue = abs($arg - $aMean);
}
else {
$returnValue += abs($arg - $aMean);
}
++$aCount;
}
}
if ($aCount == 0) {
return PHPExcel_Calculation_Functions::DIV0();
}
return $returnValue / $aCount;
}
return PHPExcel_Calculation_Functions::NaN();
}
public static function AVERAGE() {
$returnValue = $aCount = 0;
foreach (PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()) as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue)) {
$returnValue = $arg;
}
else {
$returnValue += $arg;
}
++$aCount;
}
}
if ($aCount > 0) {
return $returnValue / $aCount;
}
else {
return PHPExcel_Calculation_Functions::DIV0();
}
}
public static function AVERAGEA() {
$returnValue = null;
$aCount = 0;
foreach (PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args()) as $k => $arg) {
if (is_bool($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) && $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
if (is_null($returnValue)) {
$returnValue = $arg;
}
else {
$returnValue += $arg;
}
++$aCount;
}
}
}
if ($aCount > 0) {
return $returnValue / $aCount;
}
else {
return PHPExcel_Calculation_Functions::DIV0();
}
}
public static function AVERAGEIF($aArgs, $condition, $averageArgs = array()) {
$returnValue = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs);
$averageArgs = PHPExcel_Calculation_Functions::flattenArray($averageArgs);
if (empty($averageArgs)) {
$averageArgs = $aArgs;
}
$condition = PHPExcel_Calculation_Functions::_ifCondition($condition);
$aCount = 0;
foreach ($aArgs as $key => $arg) {
if (!is_numeric($arg)) {
$arg = PHPExcel_Calculation::_wrapResult(strtoupper($arg));
}
$testCondition = '=' . $arg . $condition;
if (PHPExcel_Calculation::getInstance()
->_calculateFormulaValue($testCondition)) {
if (is_null($returnValue) || $arg > $returnValue) {
$returnValue += $arg;
++$aCount;
}
}
}
if ($aCount > 0) {
return $returnValue / $aCount;
}
else {
return PHPExcel_Calculation_Functions::DIV0();
}
}
public static function BETADIST($value, $alpha, $beta, $rMin = 0, $rMax = 1) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
$beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta);
$rMin = PHPExcel_Calculation_Functions::flattenSingleValue($rMin);
$rMax = PHPExcel_Calculation_Functions::flattenSingleValue($rMax);
if (is_numeric($value) && is_numeric($alpha) && is_numeric($beta) && is_numeric($rMin) && is_numeric($rMax)) {
if ($value < $rMin || $value > $rMax || $alpha <= 0 || $beta <= 0 || $rMin == $rMax) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($rMin > $rMax) {
$tmp = $rMin;
$rMin = $rMax;
$rMax = $tmp;
}
$value -= $rMin;
$value /= $rMax - $rMin;
return self::_incompleteBeta($value, $alpha, $beta);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function BETAINV($probability, $alpha, $beta, $rMin = 0, $rMax = 1) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
$beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta);
$rMin = PHPExcel_Calculation_Functions::flattenSingleValue($rMin);
$rMax = PHPExcel_Calculation_Functions::flattenSingleValue($rMax);
if (is_numeric($probability) && is_numeric($alpha) && is_numeric($beta) && is_numeric($rMin) && is_numeric($rMax)) {
if ($alpha <= 0 || $beta <= 0 || $rMin == $rMax || $probability <= 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($rMin > $rMax) {
$tmp = $rMin;
$rMin = $rMax;
$rMax = $tmp;
}
$a = 0;
$b = 2;
$i = 0;
while ($b - $a > PRECISION && $i++ < MAX_ITERATIONS) {
$guess = ($a + $b) / 2;
$result = self::BETADIST($guess, $alpha, $beta);
if ($result == $probability || $result == 0) {
$b = $a;
}
elseif ($result > $probability) {
$b = $guess;
}
else {
$a = $guess;
}
}
if ($i == MAX_ITERATIONS) {
return PHPExcel_Calculation_Functions::NA();
}
return round($rMin + $guess * ($rMax - $rMin), 12);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function BINOMDIST($value, $trials, $probability, $cumulative) {
$value = floor(PHPExcel_Calculation_Functions::flattenSingleValue($value));
$trials = floor(PHPExcel_Calculation_Functions::flattenSingleValue($trials));
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
if (is_numeric($value) && is_numeric($trials) && is_numeric($probability)) {
if ($value < 0 || $value > $trials) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($probability < 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
$summer = 0;
for ($i = 0; $i <= $value; ++$i) {
$summer += PHPExcel_Calculation_MathTrig::COMBIN($trials, $i) * pow($probability, $i) * pow(1 - $probability, $trials - $i);
}
return $summer;
}
else {
return PHPExcel_Calculation_MathTrig::COMBIN($trials, $value) * pow($probability, $value) * pow(1 - $probability, $trials - $value);
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function CHIDIST($value, $degrees) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees));
if (is_numeric($value) && is_numeric($degrees)) {
if ($degrees < 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($value < 0) {
if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) {
return 1;
}
return PHPExcel_Calculation_Functions::NaN();
}
return 1 - self::_incompleteGamma($degrees / 2, $value / 2) / self::_gamma($degrees / 2);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function CHIINV($probability, $degrees) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees));
if (is_numeric($probability) && is_numeric($degrees)) {
$xLo = 100;
$xHi = 0;
$x = $xNew = 1;
$dx = 1;
$i = 0;
while (abs($dx) > PRECISION && $i++ < MAX_ITERATIONS) {
$result = self::CHIDIST($x, $degrees);
$error = $result - $probability;
if ($error == 0.0) {
$dx = 0;
}
elseif ($error < 0.0) {
$xLo = $x;
}
else {
$xHi = $x;
}
if ($result != 0.0) {
$dx = $error / $result;
$xNew = $x - $dx;
}
if ($xNew < $xLo || $xNew > $xHi || $result == 0.0) {
$xNew = ($xLo + $xHi) / 2;
$dx = $xNew - $x;
}
$x = $xNew;
}
if ($i == MAX_ITERATIONS) {
return PHPExcel_Calculation_Functions::NA();
}
return round($x, 12);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function CONFIDENCE($alpha, $stdDev, $size) {
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
$size = floor(PHPExcel_Calculation_Functions::flattenSingleValue($size));
if (is_numeric($alpha) && is_numeric($stdDev) && is_numeric($size)) {
if ($alpha <= 0 || $alpha >= 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($stdDev <= 0 || $size < 1) {
return PHPExcel_Calculation_Functions::NaN();
}
return self::NORMSINV(1 - $alpha / 2) * $stdDev / sqrt($size);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function CORREL($yValues, $xValues = null) {
if (is_null($xValues) || !is_array($yValues) || !is_array($xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getCorrelation();
}
public static function COUNT() {
$returnValue = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
++$returnValue;
}
}
return $returnValue;
}
public static function COUNTA() {
$returnValue = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) && $arg != '') {
++$returnValue;
}
}
return $returnValue;
}
public static function COUNTBLANK() {
$returnValue = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_null($arg) || is_string($arg) && $arg == '') {
++$returnValue;
}
}
return $returnValue;
}
public static function COUNTIF($aArgs, $condition) {
$returnValue = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs);
$condition = PHPExcel_Calculation_Functions::_ifCondition($condition);
foreach ($aArgs as $arg) {
if (!is_numeric($arg)) {
$arg = PHPExcel_Calculation::_wrapResult(strtoupper($arg));
}
$testCondition = '=' . $arg . $condition;
if (PHPExcel_Calculation::getInstance()
->_calculateFormulaValue($testCondition)) {
++$returnValue;
}
}
return $returnValue;
}
public static function COVAR($yValues, $xValues) {
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getCovariance();
}
public static function CRITBINOM($trials, $probability, $alpha) {
$trials = floor(PHPExcel_Calculation_Functions::flattenSingleValue($trials));
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
if (is_numeric($trials) && is_numeric($probability) && is_numeric($alpha)) {
if ($trials < 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($probability < 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($alpha < 0 || $alpha > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($alpha <= 0.5) {
$t = sqrt(log(1 / ($alpha * $alpha)));
$trialsApprox = 0 - ($t + (2.515517 + 0.802853 * $t + 0.010328 * $t * $t) / (1 + 1.432788 * $t + 0.189269 * $t * $t + 0.001308 * $t * $t * $t));
}
else {
$t = sqrt(log(1 / pow(1 - $alpha, 2)));
$trialsApprox = $t - (2.515517 + 0.802853 * $t + 0.010328 * $t * $t) / (1 + 1.432788 * $t + 0.189269 * $t * $t + 0.001308 * $t * $t * $t);
}
$Guess = floor($trials * $probability + $trialsApprox * sqrt($trials * $probability * (1 - $probability)));
if ($Guess < 0) {
$Guess = 0;
}
elseif ($Guess > $trials) {
$Guess = $trials;
}
$TotalUnscaledProbability = $UnscaledPGuess = $UnscaledCumPGuess = 0.0;
$EssentiallyZero = 9.999999999999999E-12;
$m = floor($trials * $probability);
++$TotalUnscaledProbability;
if ($m == $Guess) {
++$UnscaledPGuess;
}
if ($m <= $Guess) {
++$UnscaledCumPGuess;
}
$PreviousValue = 1;
$Done = False;
$k = $m + 1;
while (!$Done && $k <= $trials) {
$CurrentValue = $PreviousValue * ($trials - $k + 1) * $probability / ($k * (1 - $probability));
$TotalUnscaledProbability += $CurrentValue;
if ($k == $Guess) {
$UnscaledPGuess += $CurrentValue;
}
if ($k <= $Guess) {
$UnscaledCumPGuess += $CurrentValue;
}
if ($CurrentValue <= $EssentiallyZero) {
$Done = True;
}
$PreviousValue = $CurrentValue;
++$k;
}
$PreviousValue = 1;
$Done = False;
$k = $m - 1;
while (!$Done && $k >= 0) {
$CurrentValue = $PreviousValue * $k + 1 * (1 - $probability) / (($trials - $k) * $probability);
$TotalUnscaledProbability += $CurrentValue;
if ($k == $Guess) {
$UnscaledPGuess += $CurrentValue;
}
if ($k <= $Guess) {
$UnscaledCumPGuess += $CurrentValue;
}
if ($CurrentValue <= $EssentiallyZero) {
$Done = True;
}
$PreviousValue = $CurrentValue;
--$k;
}
$PGuess = $UnscaledPGuess / $TotalUnscaledProbability;
$CumPGuess = $UnscaledCumPGuess / $TotalUnscaledProbability;
$CumPGuessMinus1 = $CumPGuess - 1;
while (True) {
if ($CumPGuessMinus1 < $alpha && $CumPGuess >= $alpha) {
return $Guess;
}
elseif ($CumPGuessMinus1 < $alpha && $CumPGuess < $alpha) {
$PGuessPlus1 = $PGuess * ($trials - $Guess) * $probability / $Guess / (1 - $probability);
$CumPGuessMinus1 = $CumPGuess;
$CumPGuess = $CumPGuess + $PGuessPlus1;
$PGuess = $PGuessPlus1;
++$Guess;
}
elseif ($CumPGuessMinus1 >= $alpha && $CumPGuess >= $alpha) {
$PGuessMinus1 = $PGuess * $Guess * (1 - $probability) / ($trials - $Guess + 1) / $probability;
$CumPGuess = $CumPGuessMinus1;
$CumPGuessMinus1 = $CumPGuessMinus1 - $PGuess;
$PGuess = $PGuessMinus1;
--$Guess;
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function DEVSQ() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGE($aArgs);
if ($aMean != PHPExcel_Calculation_Functions::DIV0()) {
$aCount = -1;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue)) {
$returnValue = pow($arg - $aMean, 2);
}
else {
$returnValue += pow($arg - $aMean, 2);
}
++$aCount;
}
}
if (is_null($returnValue)) {
return PHPExcel_Calculation_Functions::NaN();
}
else {
return $returnValue;
}
}
return self::NA();
}
public static function EXPONDIST($value, $lambda, $cumulative) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$lambda = PHPExcel_Calculation_Functions::flattenSingleValue($lambda);
$cumulative = PHPExcel_Calculation_Functions::flattenSingleValue($cumulative);
if (is_numeric($value) && is_numeric($lambda)) {
if ($value < 0 || $lambda < 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
return 1 - exp(0 - $value * $lambda);
}
else {
return $lambda * exp(0 - $value * $lambda);
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function FISHER($value) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
if (is_numeric($value)) {
if ($value <= -1 || $value >= 1) {
return PHPExcel_Calculation_Functions::NaN();
}
return 0.5 * log((1 + $value) / (1 - $value));
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function FISHERINV($value) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
if (is_numeric($value)) {
return (exp(2 * $value) - 1) / (exp(2 * $value) + 1);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function FORECAST($xValue, $yValues, $xValues) {
$xValue = PHPExcel_Calculation_Functions::flattenSingleValue($xValue);
if (!is_numeric($xValue)) {
return PHPExcel_Calculation_Functions::VALUE();
}
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getValueOfYForX($xValue);
}
public static function GAMMADIST($value, $a, $b, $cumulative) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$a = PHPExcel_Calculation_Functions::flattenSingleValue($a);
$b = PHPExcel_Calculation_Functions::flattenSingleValue($b);
if (is_numeric($value) && is_numeric($a) && is_numeric($b)) {
if ($value < 0 || $a <= 0 || $b <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
return self::_incompleteGamma($a, $value / $b) / self::_gamma($a);
}
else {
return 1 / (pow($b, $a) * self::_gamma($a)) * pow($value, $a - 1) * exp(0 - $value / $b);
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function GAMMAINV($probability, $alpha, $beta) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
$beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta);
if (is_numeric($probability) && is_numeric($alpha) && is_numeric($beta)) {
if ($alpha <= 0 || $beta <= 0 || $probability < 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
$xLo = 0;
$xHi = $alpha * $beta * 5;
$x = $xNew = 1;
$error = $pdf = 0;
$dx = 1024;
$i = 0;
while (abs($dx) > PRECISION && $i++ < MAX_ITERATIONS) {
$error = self::GAMMADIST($x, $alpha, $beta, True) - $probability;
if ($error < 0.0) {
$xLo = $x;
}
else {
$xHi = $x;
}
$pdf = self::GAMMADIST($x, $alpha, $beta, False);
if ($pdf != 0.0) {
$dx = $error / $pdf;
$xNew = $x - $dx;
}
if ($xNew < $xLo || $xNew > $xHi || $pdf == 0.0) {
$xNew = ($xLo + $xHi) / 2;
$dx = $xNew - $x;
}
$x = $xNew;
}
if ($i == MAX_ITERATIONS) {
return PHPExcel_Calculation_Functions::NA();
}
return $x;
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function GAMMALN($value) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
if (is_numeric($value)) {
if ($value <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
return log(self::_gamma($value));
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function GEOMEAN() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$aMean = PHPExcel_Calculation_MathTrig::PRODUCT($aArgs);
if (is_numeric($aMean) && $aMean > 0) {
$aCount = self::COUNT($aArgs);
if (self::MIN($aArgs) > 0) {
return pow($aMean, 1 / $aCount);
}
}
return PHPExcel_Calculation_Functions::NaN();
}
public static function GROWTH($yValues, $xValues = array(), $newValues = array(), $const = True) {
$yValues = PHPExcel_Calculation_Functions::flattenArray($yValues);
$xValues = PHPExcel_Calculation_Functions::flattenArray($xValues);
$newValues = PHPExcel_Calculation_Functions::flattenArray($newValues);
$const = is_null($const) ? True : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($const);
$bestFitExponential = trendClass::calculate(trendClass::TREND_EXPONENTIAL, $yValues, $xValues, $const);
if (empty($newValues)) {
$newValues = $bestFitExponential
->getXValues();
}
$returnArray = array();
foreach ($newValues as $xValue) {
$returnArray[0][] = $bestFitExponential
->getValueOfYForX($xValue);
}
return $returnArray;
}
public static function HARMEAN() {
$returnValue = PHPExcel_Calculation_Functions::NA();
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
if (self::MIN($aArgs) < 0) {
return PHPExcel_Calculation_Functions::NaN();
}
$aCount = 0;
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
if ($arg <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_null($returnValue)) {
$returnValue = 1 / $arg;
}
else {
$returnValue += 1 / $arg;
}
++$aCount;
}
}
if ($aCount > 0) {
return 1 / ($returnValue / $aCount);
}
else {
return $returnValue;
}
}
public static function HYPGEOMDIST($sampleSuccesses, $sampleNumber, $populationSuccesses, $populationNumber) {
$sampleSuccesses = floor(PHPExcel_Calculation_Functions::flattenSingleValue($sampleSuccesses));
$sampleNumber = floor(PHPExcel_Calculation_Functions::flattenSingleValue($sampleNumber));
$populationSuccesses = floor(PHPExcel_Calculation_Functions::flattenSingleValue($populationSuccesses));
$populationNumber = floor(PHPExcel_Calculation_Functions::flattenSingleValue($populationNumber));
if (is_numeric($sampleSuccesses) && is_numeric($sampleNumber) && is_numeric($populationSuccesses) && is_numeric($populationNumber)) {
if ($sampleSuccesses < 0 || $sampleSuccesses > $sampleNumber || $sampleSuccesses > $populationSuccesses) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($sampleNumber <= 0 || $sampleNumber > $populationNumber) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($populationSuccesses <= 0 || $populationSuccesses > $populationNumber) {
return PHPExcel_Calculation_Functions::NaN();
}
return PHPExcel_Calculation_MathTrig::COMBIN($populationSuccesses, $sampleSuccesses) * PHPExcel_Calculation_MathTrig::COMBIN($populationNumber - $populationSuccesses, $sampleNumber - $sampleSuccesses) / PHPExcel_Calculation_MathTrig::COMBIN($populationNumber, $sampleNumber);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function INTERCEPT($yValues, $xValues) {
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getIntersect();
}
public static function KURT() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$mean = self::AVERAGE($aArgs);
$stdDev = self::STDEV($aArgs);
if ($stdDev > 0) {
$count = $summer = 0;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) && !is_string($arg)) {
$summer += pow(($arg - $mean) / $stdDev, 4);
++$count;
}
}
}
if ($count > 3) {
return $summer * ($count * ($count + 1) / (($count - 1) * ($count - 2) * ($count - 3))) - 3 * pow($count - 1, 2) / (($count - 2) * ($count - 3));
}
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function LARGE() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$entry = floor(array_pop($aArgs));
if (is_numeric($entry) && !is_string($entry)) {
$mArgs = array();
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
$count = self::COUNT($mArgs);
$entry = floor(--$entry);
if ($entry < 0 || $entry >= $count || $count == 0) {
return PHPExcel_Calculation_Functions::NaN();
}
rsort($mArgs);
return $mArgs[$entry];
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function LINEST($yValues, $xValues = NULL, $const = TRUE, $stats = FALSE) {
$const = is_null($const) ? TRUE : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($const);
$stats = is_null($stats) ? FALSE : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($stats);
if (is_null($xValues)) {
$xValues = range(1, count(PHPExcel_Calculation_Functions::flattenArray($yValues)));
}
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return 0;
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues, $const);
if ($stats) {
return array(
array(
$bestFitLinear
->getSlope(),
$bestFitLinear
->getSlopeSE(),
$bestFitLinear
->getGoodnessOfFit(),
$bestFitLinear
->getF(),
$bestFitLinear
->getSSRegression(),
),
array(
$bestFitLinear
->getIntersect(),
$bestFitLinear
->getIntersectSE(),
$bestFitLinear
->getStdevOfResiduals(),
$bestFitLinear
->getDFResiduals(),
$bestFitLinear
->getSSResiduals(),
),
);
}
else {
return array(
$bestFitLinear
->getSlope(),
$bestFitLinear
->getIntersect(),
);
}
}
public static function LOGEST($yValues, $xValues = null, $const = True, $stats = False) {
$const = is_null($const) ? True : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($const);
$stats = is_null($stats) ? False : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($stats);
if (is_null($xValues)) {
$xValues = range(1, count(PHPExcel_Calculation_Functions::flattenArray($yValues)));
}
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
foreach ($yValues as $value) {
if ($value <= 0.0) {
return PHPExcel_Calculation_Functions::NaN();
}
}
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return 1;
}
$bestFitExponential = trendClass::calculate(trendClass::TREND_EXPONENTIAL, $yValues, $xValues, $const);
if ($stats) {
return array(
array(
$bestFitExponential
->getSlope(),
$bestFitExponential
->getSlopeSE(),
$bestFitExponential
->getGoodnessOfFit(),
$bestFitExponential
->getF(),
$bestFitExponential
->getSSRegression(),
),
array(
$bestFitExponential
->getIntersect(),
$bestFitExponential
->getIntersectSE(),
$bestFitExponential
->getStdevOfResiduals(),
$bestFitExponential
->getDFResiduals(),
$bestFitExponential
->getSSResiduals(),
),
);
}
else {
return array(
$bestFitExponential
->getSlope(),
$bestFitExponential
->getIntersect(),
);
}
}
public static function LOGINV($probability, $mean, $stdDev) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
if (is_numeric($probability) && is_numeric($mean) && is_numeric($stdDev)) {
if ($probability < 0 || $probability > 1 || $stdDev <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
return exp($mean + $stdDev * self::NORMSINV($probability));
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function LOGNORMDIST($value, $mean, $stdDev) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
if (is_numeric($value) && is_numeric($mean) && is_numeric($stdDev)) {
if ($value <= 0 || $stdDev <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
return self::NORMSDIST((log($value) - $mean) / $stdDev);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function MAX() {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue) || $arg > $returnValue) {
$returnValue = $arg;
}
}
}
if (is_null($returnValue)) {
return 0;
}
return $returnValue;
}
public static function MAXA() {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) && $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
if (is_null($returnValue) || $arg > $returnValue) {
$returnValue = $arg;
}
}
}
if (is_null($returnValue)) {
return 0;
}
return $returnValue;
}
public static function MAXIF($aArgs, $condition, $sumArgs = array()) {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs);
$sumArgs = PHPExcel_Calculation_Functions::flattenArray($sumArgs);
if (empty($sumArgs)) {
$sumArgs = $aArgs;
}
$condition = PHPExcel_Calculation_Functions::_ifCondition($condition);
foreach ($aArgs as $key => $arg) {
if (!is_numeric($arg)) {
$arg = PHPExcel_Calculation::_wrapResult(strtoupper($arg));
}
$testCondition = '=' . $arg . $condition;
if (PHPExcel_Calculation::getInstance()
->_calculateFormulaValue($testCondition)) {
if (is_null($returnValue) || $arg > $returnValue) {
$returnValue = $arg;
}
}
}
return $returnValue;
}
public static function MEDIAN() {
$returnValue = PHPExcel_Calculation_Functions::NaN();
$mArgs = array();
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
$mValueCount = count($mArgs);
if ($mValueCount > 0) {
sort($mArgs, SORT_NUMERIC);
$mValueCount = $mValueCount / 2;
if ($mValueCount == floor($mValueCount)) {
$returnValue = ($mArgs[$mValueCount--] + $mArgs[$mValueCount]) / 2;
}
else {
$mValueCount == floor($mValueCount);
$returnValue = $mArgs[$mValueCount];
}
}
return $returnValue;
}
public static function MIN() {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue) || $arg < $returnValue) {
$returnValue = $arg;
}
}
}
if (is_null($returnValue)) {
return 0;
}
return $returnValue;
}
public static function MINA() {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
foreach ($aArgs as $arg) {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) && $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
if (is_null($returnValue) || $arg < $returnValue) {
$returnValue = $arg;
}
}
}
if (is_null($returnValue)) {
return 0;
}
return $returnValue;
}
public static function MINIF($aArgs, $condition, $sumArgs = array()) {
$returnValue = null;
$aArgs = PHPExcel_Calculation_Functions::flattenArray($aArgs);
$sumArgs = PHPExcel_Calculation_Functions::flattenArray($sumArgs);
if (empty($sumArgs)) {
$sumArgs = $aArgs;
}
$condition = PHPExcel_Calculation_Functions::_ifCondition($condition);
foreach ($aArgs as $key => $arg) {
if (!is_numeric($arg)) {
$arg = PHPExcel_Calculation::_wrapResult(strtoupper($arg));
}
$testCondition = '=' . $arg . $condition;
if (PHPExcel_Calculation::getInstance()
->_calculateFormulaValue($testCondition)) {
if (is_null($returnValue) || $arg < $returnValue) {
$returnValue = $arg;
}
}
}
return $returnValue;
}
private static function _modeCalc($data) {
$frequencyArray = array();
foreach ($data as $datum) {
$found = False;
foreach ($frequencyArray as $key => $value) {
if ((string) $value['value'] == (string) $datum) {
++$frequencyArray[$key]['frequency'];
$found = True;
break;
}
}
if (!$found) {
$frequencyArray[] = array(
'value' => $datum,
'frequency' => 1,
);
}
}
foreach ($frequencyArray as $key => $value) {
$frequencyList[$key] = $value['frequency'];
$valueList[$key] = $value['value'];
}
array_multisort($frequencyList, SORT_DESC, $valueList, SORT_ASC, SORT_NUMERIC, $frequencyArray);
if ($frequencyArray[0]['frequency'] == 1) {
return PHPExcel_Calculation_Functions::NA();
}
return $frequencyArray[0]['value'];
}
public static function MODE() {
$returnValue = PHPExcel_Calculation_Functions::NA();
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$mArgs = array();
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
if (!empty($mArgs)) {
return self::_modeCalc($mArgs);
}
return $returnValue;
}
public static function NEGBINOMDIST($failures, $successes, $probability) {
$failures = floor(PHPExcel_Calculation_Functions::flattenSingleValue($failures));
$successes = floor(PHPExcel_Calculation_Functions::flattenSingleValue($successes));
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
if (is_numeric($failures) && is_numeric($successes) && is_numeric($probability)) {
if ($failures < 0 || $successes < 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($probability < 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if (PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_GNUMERIC) {
if ($failures + $successes - 1 <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
}
return PHPExcel_Calculation_MathTrig::COMBIN($failures + $successes - 1, $successes - 1) * pow($probability, $successes) * pow(1 - $probability, $failures);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function NORMDIST($value, $mean, $stdDev, $cumulative) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
if (is_numeric($value) && is_numeric($mean) && is_numeric($stdDev)) {
if ($stdDev < 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
return 0.5 * (1 + PHPExcel_Calculation_Engineering::_erfVal(($value - $mean) / ($stdDev * sqrt(2))));
}
else {
return 1 / (SQRT2PI * $stdDev) * exp(0 - pow($value - $mean, 2) / (2 * ($stdDev * $stdDev)));
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function NORMINV($probability, $mean, $stdDev) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
if (is_numeric($probability) && is_numeric($mean) && is_numeric($stdDev)) {
if ($probability < 0 || $probability > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
if ($stdDev < 0) {
return PHPExcel_Calculation_Functions::NaN();
}
return self::_inverse_ncdf($probability) * $stdDev + $mean;
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function NORMSDIST($value) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
return self::NORMDIST($value, 0, 1, True);
}
public static function NORMSINV($value) {
return self::NORMINV($value, 0, 1);
}
public static function PERCENTILE() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$entry = array_pop($aArgs);
if (is_numeric($entry) && !is_string($entry)) {
if ($entry < 0 || $entry > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
$mArgs = array();
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
$mValueCount = count($mArgs);
if ($mValueCount > 0) {
sort($mArgs);
$count = self::COUNT($mArgs);
$index = $entry * ($count - 1);
$iBase = floor($index);
if ($index == $iBase) {
return $mArgs[$index];
}
else {
$iNext = $iBase + 1;
$iProportion = $index - $iBase;
return $mArgs[$iBase] + ($mArgs[$iNext] - $mArgs[$iBase]) * $iProportion;
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function PERCENTRANK($valueSet, $value, $significance = 3) {
$valueSet = PHPExcel_Calculation_Functions::flattenArray($valueSet);
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$significance = is_null($significance) ? 3 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($significance);
foreach ($valueSet as $key => $valueEntry) {
if (!is_numeric($valueEntry)) {
unset($valueSet[$key]);
}
}
sort($valueSet, SORT_NUMERIC);
$valueCount = count($valueSet);
if ($valueCount == 0) {
return PHPExcel_Calculation_Functions::NaN();
}
$valueAdjustor = $valueCount - 1;
if ($value < $valueSet[0] || $value > $valueSet[$valueAdjustor]) {
return PHPExcel_Calculation_Functions::NA();
}
$pos = array_search($value, $valueSet);
if ($pos === False) {
$pos = 0;
$testValue = $valueSet[0];
while ($testValue < $value) {
$testValue = $valueSet[++$pos];
}
--$pos;
$pos += ($value - $valueSet[$pos]) / ($testValue - $valueSet[$pos]);
}
return round($pos / $valueAdjustor, $significance);
}
public static function PERMUT($numObjs, $numInSet) {
$numObjs = PHPExcel_Calculation_Functions::flattenSingleValue($numObjs);
$numInSet = PHPExcel_Calculation_Functions::flattenSingleValue($numInSet);
if (is_numeric($numObjs) && is_numeric($numInSet)) {
$numInSet = floor($numInSet);
if ($numObjs < $numInSet) {
return PHPExcel_Calculation_Functions::NaN();
}
return round(PHPExcel_Calculation_MathTrig::FACT($numObjs) / PHPExcel_Calculation_MathTrig::FACT($numObjs - $numInSet));
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function POISSON($value, $mean, $cumulative) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
if (is_numeric($value) && is_numeric($mean)) {
if ($value < 0 || $mean <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
$summer = 0;
for ($i = 0; $i <= floor($value); ++$i) {
$summer += pow($mean, $i) / PHPExcel_Calculation_MathTrig::FACT($i);
}
return exp(0 - $mean) * $summer;
}
else {
return exp(0 - $mean) * pow($mean, $value) / PHPExcel_Calculation_MathTrig::FACT($value);
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function QUARTILE() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$entry = floor(array_pop($aArgs));
if (is_numeric($entry) && !is_string($entry)) {
$entry /= 4;
if ($entry < 0 || $entry > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
return self::PERCENTILE($aArgs, $entry);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function RANK($value, $valueSet, $order = 0) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$valueSet = PHPExcel_Calculation_Functions::flattenArray($valueSet);
$order = is_null($order) ? 0 : (int) PHPExcel_Calculation_Functions::flattenSingleValue($order);
foreach ($valueSet as $key => $valueEntry) {
if (!is_numeric($valueEntry)) {
unset($valueSet[$key]);
}
}
if ($order == 0) {
rsort($valueSet, SORT_NUMERIC);
}
else {
sort($valueSet, SORT_NUMERIC);
}
$pos = array_search($value, $valueSet);
if ($pos === False) {
return PHPExcel_Calculation_Functions::NA();
}
return ++$pos;
}
public static function RSQ($yValues, $xValues) {
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getGoodnessOfFit();
}
public static function SKEW() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$mean = self::AVERAGE($aArgs);
$stdDev = self::STDEV($aArgs);
$count = $summer = 0;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) && !is_string($arg)) {
$summer += pow(($arg - $mean) / $stdDev, 3);
++$count;
}
}
}
if ($count > 2) {
return $summer * ($count / (($count - 1) * ($count - 2)));
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function SLOPE($yValues, $xValues) {
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getSlope();
}
public static function SMALL() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$entry = array_pop($aArgs);
if (is_numeric($entry) && !is_string($entry)) {
$mArgs = array();
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
$count = self::COUNT($mArgs);
$entry = floor(--$entry);
if ($entry < 0 || $entry >= $count || $count == 0) {
return PHPExcel_Calculation_Functions::NaN();
}
sort($mArgs);
return $mArgs[$entry];
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function STANDARDIZE($value, $mean, $stdDev) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$mean = PHPExcel_Calculation_Functions::flattenSingleValue($mean);
$stdDev = PHPExcel_Calculation_Functions::flattenSingleValue($stdDev);
if (is_numeric($value) && is_numeric($mean) && is_numeric($stdDev)) {
if ($stdDev <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
return ($value - $mean) / $stdDev;
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function STDEV() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGE($aArgs);
if (!is_null($aMean)) {
$aCount = -1;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue)) {
$returnValue = pow($arg - $aMean, 2);
}
else {
$returnValue += pow($arg - $aMean, 2);
}
++$aCount;
}
}
if ($aCount > 0 && $returnValue >= 0) {
return sqrt($returnValue / $aCount);
}
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function STDEVA() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGEA($aArgs);
if (!is_null($aMean)) {
$aCount = -1;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) & $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
if (is_null($returnValue)) {
$returnValue = pow($arg - $aMean, 2);
}
else {
$returnValue += pow($arg - $aMean, 2);
}
++$aCount;
}
}
}
if ($aCount > 0 && $returnValue >= 0) {
return sqrt($returnValue / $aCount);
}
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function STDEVP() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGE($aArgs);
if (!is_null($aMean)) {
$aCount = 0;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && (!PHPExcel_Calculation_Functions::isCellValue($k) || PHPExcel_Calculation_Functions::getCompatibilityMode() == PHPExcel_Calculation_Functions::COMPATIBILITY_OPENOFFICE)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
if (is_null($returnValue)) {
$returnValue = pow($arg - $aMean, 2);
}
else {
$returnValue += pow($arg - $aMean, 2);
}
++$aCount;
}
}
if ($aCount > 0 && $returnValue >= 0) {
return sqrt($returnValue / $aCount);
}
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function STDEVPA() {
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$returnValue = null;
$aMean = self::AVERAGEA($aArgs);
if (!is_null($aMean)) {
$aCount = 0;
foreach ($aArgs as $k => $arg) {
if (is_bool($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) & $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
if (is_null($returnValue)) {
$returnValue = pow($arg - $aMean, 2);
}
else {
$returnValue += pow($arg - $aMean, 2);
}
++$aCount;
}
}
}
if ($aCount > 0 && $returnValue >= 0) {
return sqrt($returnValue / $aCount);
}
}
return PHPExcel_Calculation_Functions::DIV0();
}
public static function STEYX($yValues, $xValues) {
if (!self::_checkTrendArrays($yValues, $xValues)) {
return PHPExcel_Calculation_Functions::VALUE();
}
$yValueCount = count($yValues);
$xValueCount = count($xValues);
if ($yValueCount == 0 || $yValueCount != $xValueCount) {
return PHPExcel_Calculation_Functions::NA();
}
elseif ($yValueCount == 1) {
return PHPExcel_Calculation_Functions::DIV0();
}
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues);
return $bestFitLinear
->getStdevOfResiduals();
}
public static function TDIST($value, $degrees, $tails) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees));
$tails = floor(PHPExcel_Calculation_Functions::flattenSingleValue($tails));
if (is_numeric($value) && is_numeric($degrees) && is_numeric($tails)) {
if ($value < 0 || $degrees < 1 || $tails < 1 || $tails > 2) {
return PHPExcel_Calculation_Functions::NaN();
}
$tterm = $degrees;
$ttheta = atan2($value, sqrt($tterm));
$tc = cos($ttheta);
$ts = sin($ttheta);
$tsum = 0;
if ($degrees % 2 == 1) {
$ti = 3;
$tterm = $tc;
}
else {
$ti = 2;
$tterm = 1;
}
$tsum = $tterm;
while ($ti < $degrees) {
$tterm *= $tc * $tc * ($ti - 1) / $ti;
$tsum += $tterm;
$ti += 2;
}
$tsum *= $ts;
if ($degrees % 2 == 1) {
$tsum = M_2DIVPI * ($tsum + $ttheta);
}
$tValue = 0.5 * (1 + $tsum);
if ($tails == 1) {
return 1 - abs($tValue);
}
else {
return 1 - abs(1 - $tValue - $tValue);
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function TINV($probability, $degrees) {
$probability = PHPExcel_Calculation_Functions::flattenSingleValue($probability);
$degrees = floor(PHPExcel_Calculation_Functions::flattenSingleValue($degrees));
if (is_numeric($probability) && is_numeric($degrees)) {
$xLo = 100;
$xHi = 0;
$x = $xNew = 1;
$dx = 1;
$i = 0;
while (abs($dx) > PRECISION && $i++ < MAX_ITERATIONS) {
$result = self::TDIST($x, $degrees, 2);
$error = $result - $probability;
if ($error == 0.0) {
$dx = 0;
}
elseif ($error < 0.0) {
$xLo = $x;
}
else {
$xHi = $x;
}
if ($result != 0.0) {
$dx = $error / $result;
$xNew = $x - $dx;
}
if ($xNew < $xLo || $xNew > $xHi || $result == 0.0) {
$xNew = ($xLo + $xHi) / 2;
$dx = $xNew - $x;
}
$x = $xNew;
}
if ($i == MAX_ITERATIONS) {
return PHPExcel_Calculation_Functions::NA();
}
return round($x, 12);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function TREND($yValues, $xValues = array(), $newValues = array(), $const = True) {
$yValues = PHPExcel_Calculation_Functions::flattenArray($yValues);
$xValues = PHPExcel_Calculation_Functions::flattenArray($xValues);
$newValues = PHPExcel_Calculation_Functions::flattenArray($newValues);
$const = is_null($const) ? True : (bool) PHPExcel_Calculation_Functions::flattenSingleValue($const);
$bestFitLinear = trendClass::calculate(trendClass::TREND_LINEAR, $yValues, $xValues, $const);
if (empty($newValues)) {
$newValues = $bestFitLinear
->getXValues();
}
$returnArray = array();
foreach ($newValues as $xValue) {
$returnArray[0][] = $bestFitLinear
->getValueOfYForX($xValue);
}
return $returnArray;
}
public static function TRIMMEAN() {
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$percent = array_pop($aArgs);
if (is_numeric($percent) && !is_string($percent)) {
if ($percent < 0 || $percent > 1) {
return PHPExcel_Calculation_Functions::NaN();
}
$mArgs = array();
foreach ($aArgs as $arg) {
if (is_numeric($arg) && !is_string($arg)) {
$mArgs[] = $arg;
}
}
$discard = floor(self::COUNT($mArgs) * $percent / 2);
sort($mArgs);
for ($i = 0; $i < $discard; ++$i) {
array_pop($mArgs);
array_shift($mArgs);
}
return self::AVERAGE($mArgs);
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function VARFunc() {
$returnValue = PHPExcel_Calculation_Functions::DIV0();
$summerA = $summerB = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$aCount = 0;
foreach ($aArgs as $arg) {
if (is_bool($arg)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
$summerA += $arg * $arg;
$summerB += $arg;
++$aCount;
}
}
if ($aCount > 1) {
$summerA *= $aCount;
$summerB *= $summerB;
$returnValue = ($summerA - $summerB) / ($aCount * ($aCount - 1));
}
return $returnValue;
}
public static function VARA() {
$returnValue = PHPExcel_Calculation_Functions::DIV0();
$summerA = $summerB = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$aCount = 0;
foreach ($aArgs as $k => $arg) {
if (is_string($arg) && PHPExcel_Calculation_Functions::isValue($k)) {
return PHPExcel_Calculation_Functions::VALUE();
}
elseif (is_string($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) & $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
$summerA += $arg * $arg;
$summerB += $arg;
++$aCount;
}
}
}
if ($aCount > 1) {
$summerA *= $aCount;
$summerB *= $summerB;
$returnValue = ($summerA - $summerB) / ($aCount * ($aCount - 1));
}
return $returnValue;
}
public static function VARP() {
$returnValue = PHPExcel_Calculation_Functions::DIV0();
$summerA = $summerB = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArray(func_get_args());
$aCount = 0;
foreach ($aArgs as $arg) {
if (is_bool($arg)) {
$arg = (int) $arg;
}
if (is_numeric($arg) && !is_string($arg)) {
$summerA += $arg * $arg;
$summerB += $arg;
++$aCount;
}
}
if ($aCount > 0) {
$summerA *= $aCount;
$summerB *= $summerB;
$returnValue = ($summerA - $summerB) / ($aCount * $aCount);
}
return $returnValue;
}
public static function VARPA() {
$returnValue = PHPExcel_Calculation_Functions::DIV0();
$summerA = $summerB = 0;
$aArgs = PHPExcel_Calculation_Functions::flattenArrayIndexed(func_get_args());
$aCount = 0;
foreach ($aArgs as $k => $arg) {
if (is_string($arg) && PHPExcel_Calculation_Functions::isValue($k)) {
return PHPExcel_Calculation_Functions::VALUE();
}
elseif (is_string($arg) && !PHPExcel_Calculation_Functions::isMatrixValue($k)) {
}
else {
if (is_numeric($arg) || is_bool($arg) || is_string($arg) & $arg != '') {
if (is_bool($arg)) {
$arg = (int) $arg;
}
elseif (is_string($arg)) {
$arg = 0;
}
$summerA += $arg * $arg;
$summerB += $arg;
++$aCount;
}
}
}
if ($aCount > 0) {
$summerA *= $aCount;
$summerB *= $summerB;
$returnValue = ($summerA - $summerB) / ($aCount * $aCount);
}
return $returnValue;
}
public static function WEIBULL($value, $alpha, $beta, $cumulative) {
$value = PHPExcel_Calculation_Functions::flattenSingleValue($value);
$alpha = PHPExcel_Calculation_Functions::flattenSingleValue($alpha);
$beta = PHPExcel_Calculation_Functions::flattenSingleValue($beta);
if (is_numeric($value) && is_numeric($alpha) && is_numeric($beta)) {
if ($value < 0 || $alpha <= 0 || $beta <= 0) {
return PHPExcel_Calculation_Functions::NaN();
}
if (is_numeric($cumulative) || is_bool($cumulative)) {
if ($cumulative) {
return 1 - exp(0 - pow($value / $beta, $alpha));
}
else {
return $alpha / pow($beta, $alpha) * pow($value, $alpha - 1) * exp(0 - pow($value / $beta, $alpha));
}
}
}
return PHPExcel_Calculation_Functions::VALUE();
}
public static function ZTEST($dataSet, $m0, $sigma = NULL) {
$dataSet = PHPExcel_Calculation_Functions::flattenArrayIndexed($dataSet);
$m0 = PHPExcel_Calculation_Functions::flattenSingleValue($m0);
$sigma = PHPExcel_Calculation_Functions::flattenSingleValue($sigma);
if (is_null($sigma)) {
$sigma = self::STDEV($dataSet);
}
$n = count($dataSet);
return 1 - self::NORMSDIST((self::AVERAGE($dataSet) - $m0) / ($sigma / SQRT($n)));
}
}