MathPHP\LinearAlgebra\MatrixOperationsTest::testMinorExceptionNotSquare PHP 메소드

testMinorExceptionNotSquare() 공개 메소드

    public function testMinorExceptionNotSquare()
    {
        $A = MatrixFactory::create([[1, 2, 3, 4], [2, 3, 4, 4], [3, 4, 5, 4]]);
        $this->setExpectedException('MathPHP\\Exception\\MatrixException');
        $A->minor(1, 1);
    }
MatrixOperationsTest