ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
linearBestFitClass.php
Go to the documentation of this file.
1 <?php
30 if (!defined('PHPEXCEL_ROOT')) {
34  define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../../');
35 }
36 
37 require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php');
38 
39 
48 {
49  protected $_bestFitType = 'linear';
50 
51 
52  public function getValueOfYForX($xValue) {
53  return $this->getIntersect() + $this->getSlope() * $xValue;
54  } // function getValueOfYForX()
55 
56 
57  public function getValueOfXForY($yValue) {
58  return ($yValue - $this->getIntersect()) / $this->getSlope();
59  } // function getValueOfXForY()
60 
61 
62  public function getEquation($dp=0) {
63  $slope = $this->getSlope($dp);
64  $intersect = $this->getIntersect($dp);
65 
66  return 'Y = '.$intersect.' + '.$slope.' * X';
67  } // function getEquation()
68 
69 
70  private function _linear_regression($yValues, $xValues, $const) {
71  $this->_leastSquareFit($yValues, $xValues,$const);
72  } // function _linear_regression()
73 
74 
75  function __construct($yValues, $xValues=array(), $const=True) {
76  if (parent::__construct($yValues, $xValues) !== False) {
77  $this->_linear_regression($yValues, $xValues, $const);
78  }
79  } // function __construct()
80 
81 } // class linearBestFit