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

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

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