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

testPercentileOutOfUpperBoundsP() 공개 메소드

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