logarithmicBestFitClass.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. require_once(PHPEXCEL_ROOT . 'PHPExcel/Shared/trend/bestFitClass.php');
  8. /**
  9. * PHPExcel_Logarithmic_Best_Fit
  10. *
  11. * Copyright (c) 2006 - 2015 PHPExcel
  12. *
  13. * This library is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU Lesser General Public
  15. * License as published by the Free Software Foundation; either
  16. * version 2.1 of the License, or (at your option) any later version.
  17. *
  18. * This library is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  21. * Lesser General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Lesser General Public
  24. * License along with this library; if not, write to the Free Software
  25. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  26. *
  27. * @category PHPExcel
  28. * @package PHPExcel_Shared_Trend
  29. * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
  30. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  31. * @version ##VERSION##, ##DATE##
  32. */
  33. class PHPExcel_Logarithmic_Best_Fit extends PHPExcel_Best_Fit
  34. {
  35. /**
  36. * Algorithm type to use for best-fit
  37. * (Name of this trend class)
  38. *
  39. * @var string
  40. **/
  41. protected $bestFitType = 'logarithmic';
  42. /**
  43. * Return the Y-Value for a specified value of X
  44. *
  45. * @param float $xValue X-Value
  46. * @return float Y-Value
  47. **/
  48. public function getValueOfYForX($xValue)
  49. {
  50. return $this->getIntersect() + $this->getSlope() * log($xValue - $this->xOffset);
  51. }
  52. /**
  53. * Return the X-Value for a specified value of Y
  54. *
  55. * @param float $yValue Y-Value
  56. * @return float X-Value
  57. **/
  58. public function getValueOfXForY($yValue)
  59. {
  60. return exp(($yValue - $this->getIntersect()) / $this->getSlope());
  61. }
  62. /**
  63. * Return the Equation of the best-fit line
  64. *
  65. * @param int $dp Number of places of decimal precision to display
  66. * @return string
  67. **/
  68. public function getEquation($dp = 0)
  69. {
  70. $slope = $this->getSlope($dp);
  71. $intersect = $this->getIntersect($dp);
  72. return 'Y = '.$intersect.' + '.$slope.' * log(X)';
  73. }
  74. /**
  75. * Execute the regression and calculate the goodness of fit for a set of X and Y data values
  76. *
  77. * @param float[] $yValues The set of Y-values for this regression
  78. * @param float[] $xValues The set of X-values for this regression
  79. * @param boolean $const
  80. */
  81. private function logarithmicRegression($yValues, $xValues, $const)
  82. {
  83. foreach ($xValues as &$value) {
  84. if ($value < 0.0) {
  85. $value = 0 - log(abs($value));
  86. } elseif ($value > 0.0) {
  87. $value = log($value);
  88. }
  89. }
  90. unset($value);
  91. $this->leastSquareFit($yValues, $xValues, $const);
  92. }
  93. /**
  94. * Define the regression and calculate the goodness of fit for a set of X and Y data values
  95. *
  96. * @param float[] $yValues The set of Y-values for this regression
  97. * @param float[] $xValues The set of X-values for this regression
  98. * @param boolean $const
  99. */
  100. public function __construct($yValues, $xValues = array(), $const = true)
  101. {
  102. if (parent::__construct($yValues, $xValues) !== false) {
  103. $this->logarithmicRegression($yValues, $xValues, $const);
  104. }
  105. }
  106. }