Function numpy::einsum

source · []
pub fn einsum<'py, T, OUT>(
    subscripts: &str,
    arrays: &[&'py PyArray<T, IxDyn>]
) -> PyResult<OUT>where
    T: Element,
    OUT: ArrayOrScalar<'py, T>,
Expand description

Return the Einstein summation convention of given tensors.

This is usually invoked via the the einsum! macro.