|
ILIAS
Release_4_0_x_branch Revision 61816
|
Inheritance diagram for PHPExcel_Best_Fit:
Collaboration diagram for PHPExcel_Best_Fit:Public Member Functions | |
| getError () | |
| getBestFitType () | |
| getValueOfYForX ($xValue) | |
| getValueOfXForY ($yValue) | |
| getXValues () | |
| getEquation ($dp=0) | |
| getSlope ($dp=0) | |
| getSlopeSE ($dp=0) | |
| getIntersect ($dp=0) | |
| getIntersectSE ($dp=0) | |
| getGoodnessOfFit ($dp=0) | |
| getGoodnessOfFitPercent ($dp=0) | |
| getStdevOfResiduals ($dp=0) | |
| getSSRegression ($dp=0) | |
| getSSResiduals ($dp=0) | |
| getDFResiduals ($dp=0) | |
| getF ($dp=0) | |
| getCovariance ($dp=0) | |
| getCorrelation ($dp=0) | |
| getYBestFitValues () | |
| __construct ($yValues, $xValues=array(), $const =True) | |
Protected Member Functions | |
| _calculateGoodnessOfFit ($sumX, $sumY, $sumX2, $sumY2, $sumXY, $meanX, $meanY, $const) | |
| _leastSquareFit ($yValues, $xValues, $const) | |
Protected Attributes | |
| $_error = False | |
| $_bestFitType = 'undetermined' | |
| $_valueCount = 0 | |
| $_xValues = array() | |
| $_yValues = array() | |
| $_adjustToZero = False | |
| $_yBestFitValues = array() | |
| $_goodnessOfFit = 1 | |
| $_stdevOfResiduals = 0 | |
| $_covariance = 0 | |
| $_correlation = 0 | |
| $_SSRegression = 0 | |
| $_SSResiduals = 0 | |
| $_DFResiduals = 0 | |
| $_F = 0 | |
| $_slope = 0 | |
| $_slopeSE = 0 | |
| $_intersect = 0 | |
| $_intersectSE = 0 | |
| $_Xoffset = 0 | |
| $_Yoffset = 0 | |
Definition at line 36 of file bestFitClass.php.
| PHPExcel_Best_Fit::__construct | ( | $yValues, | |
$xValues = array(), |
|||
$const = True |
|||
| ) |
Reimplemented in PHPExcel_Exponential_Best_Fit, PHPExcel_Power_Best_Fit, PHPExcel_Logarithmic_Best_Fit, and PHPExcel_Linear_Best_Fit.
Definition at line 299 of file bestFitClass.php.
References elseif().
Here is the call graph for this function:
|
protected |
Definition at line 220 of file bestFitClass.php.
References $_DFResiduals, $_valueCount, and getValueOfYForX().
Referenced by _leastSquareFit(), and PHPExcel_Polynomial_Best_Fit\_polynomial_regression().
Here is the call graph for this function:
Here is the caller graph for this function:
|
protected |
Definition at line 262 of file bestFitClass.php.
References $_valueCount, and _calculateGoodnessOfFit().
Referenced by PHPExcel_Exponential_Best_Fit\_exponential_regression(), PHPExcel_Linear_Best_Fit\_linear_regression(), PHPExcel_Logarithmic_Best_Fit\_logarithmic_regression(), and PHPExcel_Power_Best_Fit\_power_regression().
Here is the call graph for this function:
Here is the caller graph for this function:| PHPExcel_Best_Fit::getBestFitType | ( | ) |
Definition at line 86 of file bestFitClass.php.
References $_bestFitType.
| PHPExcel_Best_Fit::getCorrelation | ( | $dp = 0 | ) |
Definition at line 207 of file bestFitClass.php.
References $_correlation.
| PHPExcel_Best_Fit::getCovariance | ( | $dp = 0 | ) |
Definition at line 199 of file bestFitClass.php.
References $_covariance.
| PHPExcel_Best_Fit::getDFResiduals | ( | $dp = 0 | ) |
Definition at line 183 of file bestFitClass.php.
References $_DFResiduals.
| PHPExcel_Best_Fit::getEquation | ( | $dp = 0 | ) |
Reimplemented in PHPExcel_Polynomial_Best_Fit, PHPExcel_Exponential_Best_Fit, PHPExcel_Linear_Best_Fit, PHPExcel_Logarithmic_Best_Fit, and PHPExcel_Power_Best_Fit.
Definition at line 106 of file bestFitClass.php.
| PHPExcel_Best_Fit::getError | ( | ) |
Definition at line 81 of file bestFitClass.php.
References $_error.
| PHPExcel_Best_Fit::getF | ( | $dp = 0 | ) |
Definition at line 191 of file bestFitClass.php.
References $_F.
| PHPExcel_Best_Fit::getGoodnessOfFit | ( | $dp = 0 | ) |
Definition at line 143 of file bestFitClass.php.
References $_goodnessOfFit.
Referenced by PHPExcel_Polynomial_Best_Fit\__construct().
Here is the caller graph for this function:| PHPExcel_Best_Fit::getGoodnessOfFitPercent | ( | $dp = 0 | ) |
Definition at line 151 of file bestFitClass.php.
| PHPExcel_Best_Fit::getIntersect | ( | $dp = 0 | ) |
Reimplemented in PHPExcel_Exponential_Best_Fit, and PHPExcel_Power_Best_Fit.
Definition at line 127 of file bestFitClass.php.
References $_intersect.
Referenced by PHPExcel_Polynomial_Best_Fit\getCoefficients(), PHPExcel_Linear_Best_Fit\getEquation(), PHPExcel_Logarithmic_Best_Fit\getEquation(), PHPExcel_Polynomial_Best_Fit\getEquation(), PHPExcel_Logarithmic_Best_Fit\getValueOfXForY(), PHPExcel_Linear_Best_Fit\getValueOfXForY(), PHPExcel_Polynomial_Best_Fit\getValueOfXForY(), PHPExcel_Logarithmic_Best_Fit\getValueOfYForX(), PHPExcel_Linear_Best_Fit\getValueOfYForX(), and PHPExcel_Polynomial_Best_Fit\getValueOfYForX().
Here is the caller graph for this function:| PHPExcel_Best_Fit::getIntersectSE | ( | $dp = 0 | ) |
Definition at line 135 of file bestFitClass.php.
References $_intersectSE.
| PHPExcel_Best_Fit::getSlope | ( | $dp = 0 | ) |
Reimplemented in PHPExcel_Polynomial_Best_Fit, and PHPExcel_Exponential_Best_Fit.
Definition at line 111 of file bestFitClass.php.
References $_slope.
Referenced by PHPExcel_Linear_Best_Fit\getEquation(), PHPExcel_Power_Best_Fit\getEquation(), PHPExcel_Logarithmic_Best_Fit\getEquation(), PHPExcel_Power_Best_Fit\getValueOfXForY(), PHPExcel_Logarithmic_Best_Fit\getValueOfXForY(), PHPExcel_Linear_Best_Fit\getValueOfXForY(), PHPExcel_Power_Best_Fit\getValueOfYForX(), PHPExcel_Linear_Best_Fit\getValueOfYForX(), and PHPExcel_Logarithmic_Best_Fit\getValueOfYForX().
Here is the caller graph for this function:| PHPExcel_Best_Fit::getSlopeSE | ( | $dp = 0 | ) |
Definition at line 119 of file bestFitClass.php.
References $_slopeSE.
| PHPExcel_Best_Fit::getSSRegression | ( | $dp = 0 | ) |
Definition at line 167 of file bestFitClass.php.
References $_SSRegression.
| PHPExcel_Best_Fit::getSSResiduals | ( | $dp = 0 | ) |
Definition at line 175 of file bestFitClass.php.
References $_SSResiduals.
| PHPExcel_Best_Fit::getStdevOfResiduals | ( | $dp = 0 | ) |
Definition at line 159 of file bestFitClass.php.
References $_stdevOfResiduals.
| PHPExcel_Best_Fit::getValueOfXForY | ( | $yValue | ) |
Reimplemented in PHPExcel_Polynomial_Best_Fit, PHPExcel_Exponential_Best_Fit, PHPExcel_Linear_Best_Fit, PHPExcel_Logarithmic_Best_Fit, and PHPExcel_Power_Best_Fit.
Definition at line 96 of file bestFitClass.php.
| PHPExcel_Best_Fit::getValueOfYForX | ( | $xValue | ) |
Reimplemented in PHPExcel_Polynomial_Best_Fit, PHPExcel_Exponential_Best_Fit, PHPExcel_Linear_Best_Fit, PHPExcel_Logarithmic_Best_Fit, and PHPExcel_Power_Best_Fit.
Definition at line 91 of file bestFitClass.php.
Referenced by _calculateGoodnessOfFit().
Here is the caller graph for this function:| PHPExcel_Best_Fit::getXValues | ( | ) |
Definition at line 101 of file bestFitClass.php.
References $_xValues.
| PHPExcel_Best_Fit::getYBestFitValues | ( | ) |
Definition at line 215 of file bestFitClass.php.
References $_yBestFitValues.
|
protected |
Definition at line 48 of file bestFitClass.php.
|
protected |
Definition at line 40 of file bestFitClass.php.
Referenced by getBestFitType().
|
protected |
Definition at line 58 of file bestFitClass.php.
Referenced by getCorrelation().
|
protected |
Definition at line 56 of file bestFitClass.php.
Referenced by getCovariance().
|
protected |
Definition at line 64 of file bestFitClass.php.
Referenced by _calculateGoodnessOfFit(), and getDFResiduals().
|
protected |
Definition at line 38 of file bestFitClass.php.
Referenced by getError().
|
protected |
Definition at line 66 of file bestFitClass.php.
Referenced by getF().
|
protected |
Definition at line 52 of file bestFitClass.php.
Referenced by getGoodnessOfFit().
|
protected |
Definition at line 72 of file bestFitClass.php.
Referenced by getIntersect().
|
protected |
Definition at line 74 of file bestFitClass.php.
Referenced by getIntersectSE().
|
protected |
Definition at line 68 of file bestFitClass.php.
Referenced by PHPExcel_Polynomial_Best_Fit\getSlope(), and getSlope().
|
protected |
Definition at line 70 of file bestFitClass.php.
Referenced by getSlopeSE().
|
protected |
Definition at line 60 of file bestFitClass.php.
Referenced by getSSRegression().
|
protected |
Definition at line 62 of file bestFitClass.php.
Referenced by getSSResiduals().
|
protected |
Definition at line 54 of file bestFitClass.php.
Referenced by getStdevOfResiduals().
|
protected |
Definition at line 42 of file bestFitClass.php.
Referenced by _calculateGoodnessOfFit(), _leastSquareFit(), and PHPExcel_Polynomial_Best_Fit\_polynomial_regression().
|
protected |
Definition at line 76 of file bestFitClass.php.
|
protected |
Definition at line 44 of file bestFitClass.php.
Referenced by getXValues().
|
protected |
Definition at line 50 of file bestFitClass.php.
Referenced by getYBestFitValues().
|
protected |
Definition at line 78 of file bestFitClass.php.
|
protected |
Definition at line 46 of file bestFitClass.php.