From 2e396b74167ae9f007ed91e2912cc67845d7398b Mon Sep 17 00:00:00 2001 From: Progi1984 Date: Tue, 22 Mar 2016 16:56:11 +0100 Subject: [PATCH] #401 : Support for namespaces --- .../Shared/trend/powerBestFit.php | 138 ------------------ 1 file changed, 138 deletions(-) delete mode 100644 src/PhpSpreadsheet/Shared/trend/powerBestFit.php diff --git a/src/PhpSpreadsheet/Shared/trend/powerBestFit.php b/src/PhpSpreadsheet/Shared/trend/powerBestFit.php deleted file mode 100644 index c228cfa3..00000000 --- a/src/PhpSpreadsheet/Shared/trend/powerBestFit.php +++ /dev/null @@ -1,138 +0,0 @@ -getIntersect() * pow(($xValue - $this->xOffset), $this->getSlope()); - } - - - /** - * Return the X-Value for a specified value of Y - * - * @param float $yValue Y-Value - * @return float X-Value - **/ - public function getValueOfXForY($yValue) - { - return pow((($yValue + $this->yOffset) / $this->getIntersect()), (1 / $this->getSlope())); - } - - - /** - * Return the Equation of the best-fit line - * - * @param int $dp Number of places of decimal precision to display - * @return string - **/ - public function getEquation($dp = 0) - { - $slope = $this->getSlope($dp); - $intersect = $this->getIntersect($dp); - - return 'Y = ' . $intersect . ' * X^' . $slope; - } - - - /** - * Return the Value of X where it intersects Y = 0 - * - * @param int $dp Number of places of decimal precision to display - * @return string - **/ - public function getIntersect($dp = 0) - { - if ($dp != 0) { - return round(exp($this->intersect), $dp); - } - return exp($this->intersect); - } - - - /** - * Execute the regression and calculate the goodness of fit for a set of X and Y data values - * - * @param float[] $yValues The set of Y-values for this regression - * @param float[] $xValues The set of X-values for this regression - * @param boolean $const - */ - private function powerRegression($yValues, $xValues, $const) - { - foreach ($xValues as &$value) { - if ($value < 0.0) { - $value = 0 - log(abs($value)); - } elseif ($value > 0.0) { - $value = log($value); - } - } - unset($value); - foreach ($yValues as &$value) { - if ($value < 0.0) { - $value = 0 - log(abs($value)); - } elseif ($value > 0.0) { - $value = log($value); - } - } - unset($value); - - $this->leastSquareFit($yValues, $xValues, $const); - } - - - /** - * Define the regression and calculate the goodness of fit for a set of X and Y data values - * - * @param float[] $yValues The set of Y-values for this regression - * @param float[] $xValues The set of X-values for this regression - * @param boolean $const - */ - public function __construct($yValues, $xValues = array(), $const = true) - { - if (parent::__construct($yValues, $xValues) !== false) { - $this->powerRegression($yValues, $xValues, $const); - } - } -}