MathPHP\LinearAlgebra\MatrixOperationsTest::dataProviderForAugmentBelow PHP Method

dataProviderForAugmentBelow() public method

    public function dataProviderForAugmentBelow()
    {
        return [[[[1]], [[2]], [[1], [2]]], [[[1], [2]], [[3]], [[1], [2], [3]]], [[[1, 2], [2, 3]], [[3, 4]], [[1, 2], [2, 3], [3, 4]]], [[[1, 2, 3], [2, 3, 4]], [[3, 4, 5]], [[1, 2, 3], [2, 3, 4], [3, 4, 5]]], [[[1, 2, 3], [2, 3, 4]], [[3, 4, 5], [4, 5, 6]], [[1, 2, 3], [2, 3, 4], [3, 4, 5], [4, 5, 6]]]];
    }
MatrixOperationsTest