You are here

public function PHPExcel_Polynomial_Best_Fit::getCoefficients in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php \PHPExcel_Polynomial_Best_Fit::getCoefficients()

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php, line 139

Class

PHPExcel_Polynomial_Best_Fit
PHPExcel_Polynomial_Best_Fit

Code

public function getCoefficients($dp = 0) {
  return array_merge(array(
    $this
      ->getIntersect($dp),
  ), $this
    ->getSlope($dp));
}