dpnp.linalg.multi_dot

dpnp.linalg.multi_dot(arrays, out=None)[source]

Compute the dot product of two or more arrays in a single function call

Parameters
  • arrays (sequence of array_like) – If the first argument is 1-D it is treated as row vector. If the last argument is 1-D it is treated as column vector. The other arguments must be 2-D.

  • out (ndarray, optional) – unsupported

Returns

output – Returns the dot product of the supplied arrays.

Return type

ndarray

See also

numpy.multi_dot