You are here

function PHPExcel_Logarithmic_Best_Fit::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php \PHPExcel_Logarithmic_Best_Fit::__construct()

* Define the regression and calculate the goodness of fit for a set of X and Y data values * *

Parameters

float[] $yValues The set of Y-values for this regression: * @param float[] $xValues The set of X-values for this regression * @param boolean $const

Overrides PHPExcel_Best_Fit::__construct

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php, line 114

Class

PHPExcel_Logarithmic_Best_Fit
PHPExcel_Logarithmic_Best_Fit

Code

function __construct($yValues, $xValues = array(), $const = True) {
  if (parent::__construct($yValues, $xValues) !== False) {
    $this
      ->_logarithmic_regression($yValues, $xValues, $const);
  }
}