PhpBench\Tests\Unit\Math\StatisticsTest::testKdeMode PHP Метод

testKdeMode() публичный Метод

public testKdeMode ( $population, $space, $bandwidth, $expected )
    public function testKdeMode($population, $space, $bandwidth, $expected)
    {
        $result = Statistics::kdeMode($population, $space, $bandwidth);
        $this->assertEquals($expected, round($result, 2));
    }