NumPHPTest\Core\NumArray\DotTest::testDotVector3Matrix3d PHP Метод

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

Tests if InvalidArgumentException will be thrown, when using NumArray::dot with a vector and a 2x3x4 matrix that are not align
    public function testDotVector3Matrix3d()
    {
        $numArray1 = NumPHP::arange(1, 3);
        $numArray2 = NumPHP::arange(1, 24)->reshape(2, 3, 4);
        $numArray1->dot($numArray2);
    }