MathPHP\LinearAlgebra\MatrixOperationsTest::dataProviderForTranspose PHP Method

dataProviderForTranspose() public method

    public function dataProviderForTranspose()
    {
        return [[[[1, 2], [3, 4], [5, 6]], [[1, 3, 5], [2, 4, 6]]], [[[5, 4, 3], [4, 0, 4], [7, 10, 3]], [[5, 4, 7], [4, 0, 10], [3, 4, 3]]], [[[5, 4], [4, 0], [7, 10], [-1, 8]], [[5, 4, 7, -1], [4, 0, 10, 8]]]];
    }
MatrixOperationsTest