NumPHPTest\Core\NumArray\Reduce\MeanTest::testMeanSingleAxis1 PHP 메소드

testMeanSingleAxis1() 공개 메소드

Tests if InvalidArgumentException will be thrown by using NumArray::mean and a wrong axis on a scalar value
public testMeanSingleAxis1 ( )
    public function testMeanSingleAxis1()
    {
        $numArray = new NumArray(5);
        $numArray->mean(1);
    }