MathPHP\Statistics\DescriptiveTest::testPercentileOutOfLowerBoundsP PHP 메소드

testPercentileOutOfLowerBoundsP() 공개 메소드

    public function testPercentileOutOfLowerBoundsP()
    {
        $this->setExpectedException('MathPHP\\Exception\\OutOfBoundsException');
        Descriptive::percentile([1, 2, 3], -4);
    }
DescriptiveTest