MathPHP\LinearAlgebra\VectorAxiomsTest::dataProviderForCrossProductThreeVectors PHP Метод

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

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