mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2025-01-10 00:37:55 +00:00
add Mean::arithmetic tests
This commit is contained in:
parent
52cbda0482
commit
b5e4cbe66e
17
tests/Phpml/Math/Statistic/MeanTest.php
Normal file
17
tests/Phpml/Math/Statistic/MeanTest.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace test\Phpml\Math\StandardDeviation;
|
||||
|
||||
use Phpml\Math\Statistic\Mean;
|
||||
|
||||
class MeanTest extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
public function testArithmeticMean()
|
||||
{
|
||||
$delta = 0.01;
|
||||
$this->assertEquals(3.5, Mean::arithmetic([2, 5]), '', $delta);
|
||||
$this->assertEquals(41.16, Mean::arithmetic([43, 21, 25, 42, 57, 59]), '', $delta);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user