pub trait ContractThirdWithFirst<TKL> {
type Output;
// Required method
fn contract_third_with_first(&self, tensor: TKL) -> Self::Output;
}Expand description
Transforms the third index of a rank-4 tensor.
Contracts it with the first index of a rank-2 tensor.