public function PHPExcel_Best_Fit::getValueOfYForX in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php \PHPExcel_Best_Fit::getValueOfYForX()
* Return the Y-Value for a specified value of X * *
Parameters
float $xValue X-Value: * @return float Y-Value
1 call to PHPExcel_Best_Fit::getValueOfYForX()
- PHPExcel_Best_Fit::_calculateGoodnessOfFit in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ bestFitClass.php
5 methods override PHPExcel_Best_Fit::getValueOfYForX()
- PHPExcel_Exponential_Best_Fit::getValueOfYForX in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ exponentialBestFitClass.php - * Return the Y-Value for a specified value of X * *
- PHPExcel_Linear_Best_Fit::getValueOfYForX in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ linearBestFitClass.php - * Return the Y-Value for a specified value of X * *
- PHPExcel_Logarithmic_Best_Fit::getValueOfYForX in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ logarithmicBestFitClass.php - * Return the Y-Value for a specified value of X * *
- PHPExcel_Polynomial_Best_Fit::getValueOfYForX in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ polynomialBestFitClass.php - * Return the Y-Value for a specified value of X * *
- PHPExcel_Power_Best_Fit::getValueOfYForX in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ powerBestFitClass.php - * Return the Y-Value for a specified value of X * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ trend/ bestFitClass.php, line 132
Class
- PHPExcel_Best_Fit
- PHPExcel_Best_Fit
Code
public function getValueOfYForX($xValue) {
return False;
}