MathPHP\LinearAlgebra\MatrixOperationsTest::testInverseExceptionDetIsZero PHP Method

testInverseExceptionDetIsZero() public method

    public function testInverseExceptionDetIsZero(array $A)
    {
        $A = MatrixFactory::create($A);
        $this->setExpectedException('MathPHP\\Exception\\MatrixException');
        $A->inverse();
    }
MatrixOperationsTest