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

testMeanAbsoluteDeviationNullWhenEmptyArray() 공개 메소드

    public function testMeanAbsoluteDeviationNullWhenEmptyArray()
    {
        $this->assertNull(Descriptive::meanAbsoluteDeviation(array()));
    }
DescriptiveTest