MathPHP\LinearAlgebra\MatrixOperationsTest::testDetExceptionNotSquareMatrix PHP Method

testDetExceptionNotSquareMatrix() public method

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