ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
exponentialBestFitClass.php
Go to the documentation of this file.
1 <?php
29 require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php');
30 
31 
40 {
41  protected $_bestFitType = 'exponential';
42 
43 
44  public function getValueOfYForX($xValue) {
45  return $this->getIntersect() * pow($this->getSlope(),($xValue - $this->_Xoffset));
46  } // function getValueOfYForX()
47 
48 
49  public function getValueOfXForY($yValue) {
50  return log(($yValue + $this->_Yoffset) / $this->getIntersect()) / log($this->getSlope());
51  } // function getValueOfXForY()
52 
53 
54  public function getEquation($dp=0) {
55  $slope = $this->getSlope($dp);
56  $intersect = $this->getIntersect($dp);
57 
58  return 'Y = '.$intersect.' * '.$slope.'^X';
59  } // function getEquation()
60 
61 
62  public function getSlope($dp=0) {
63  if ($dp != 0) {
64  return round(exp($this->_slope),$dp);
65  }
66  return exp($this->_slope);
67  } // function getSlope()
68 
69 
70  public function getIntersect($dp=0) {
71  if ($dp != 0) {
72  return round(exp($this->_intersect),$dp);
73  }
74  return exp($this->_intersect);
75  } // function getIntersect()
76 
77 
78  private function _exponential_regression($yValues, $xValues, $const) {
79  foreach($yValues as &$value) {
80  if ($value < 0.0) {
81  $value = 0 - log(abs($value));
82  } elseif ($value > 0.0) {
83  $value = log($value);
84  }
85  }
86  unset($value);
87 
88  $this->_leastSquareFit($yValues, $xValues, $const);
89  } // function _exponential_regression()
90 
91 
92  function __construct($yValues, $xValues=array(), $const=True) {
93  if (parent::__construct($yValues, $xValues) !== False) {
94  $this->_exponential_regression($yValues, $xValues, $const);
95  }
96  } // function __construct()
97 
98 } // class exponentialBestFit