You are here

public function PHPExcel_Best_Fit::getIntersectSE in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php \PHPExcel_Best_Fit::getIntersectSE()

* Return the standard error of the Intersect * *

Parameters

int $dp Number of places of decimal precision to display: * @return string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php, line 217

Class

PHPExcel_Best_Fit
PHPExcel_Best_Fit

Code

public function getIntersectSE($dp = 0) {
  if ($dp != 0) {
    return round($this->_intersectSE, $dp);
  }
  return $this->_intersectSE;
}