logo

Trait neuronika::Cat[][src]

pub trait Cat<Rhs> {
    type Output;
    fn cat(self, other: Rhs, axis: usize) -> Self::Output;
}
Expand description

Concatenation.

Associated Types

The type of the concatenation’s result. See the differentiability arithmetic for more details.

Required methods

Concatenates variables along the given axis.

Implementors