phpOMS/Math/Statistic/Forecast/Regression/LevelLevelRegression.php
2018-02-03 13:15:46 +01:00

43 lines
816 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace phpOMS\Math\Statistic\Forecast\Regression;
/**
* Regression class.
*
* @package Framework
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class LevelLevelRegression extends RegressionAbstract
{
/**
* {@inheritdoc}
*/
public static function getSlope(float $b1, float $y, float $x) : float
{
return $b1;
}
/**
* {@inheritdoc}
*/
public static function getElasticity(float $b1, float $y, float $x): float
{
return $b1 * $y / $x;
}
}