MathPHP\LinearAlgebra\MatrixOperationsTest::testMinorMatrixExceptionNotSquare PHP Метод

testMinorMatrixExceptionNotSquare() публичный Метод

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