mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 18:18:41 +00:00
16 lines
195 B
PHP
16 lines
195 B
PHP
<?php
|
|
|
|
namespace phpOMS\Math\Finance\Forecasting;
|
|
|
|
class ExponentialSmoothing
|
|
{
|
|
private $data = [];
|
|
|
|
private $cycle = [];
|
|
|
|
public function __construct(array $data)
|
|
{
|
|
|
|
}
|
|
}
|