MathPHP\LinearAlgebra\VectorAxiomsTest::dataProviderForCrossProduct PHP Method

dataProviderForCrossProduct() public method

    public function dataProviderForCrossProduct()
    {
        return [[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, -5, 6]], [[-1, 2, -3], [4, -5, 6]], [[0, 0, 0], [0, 0, 0]], [[4, 5, 6], [7, 8, 9]], [[4, 9, 3], [12, 11, 4]], [[-4, 9, 3], [12, 11, 4]], [[4, -9, 3], [12, 11, 4]], [[4, 9, -3], [12, 11, 4]], [[4, 9, 3], [-12, 11, 4]], [[4, 9, 3], [12, -11, 4]], [[4, 9, 3], [12, 11, -4]]];
    }