logo

Trait neuronika::Stack[][src]

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

Stacking.

Associated Types

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

Required methods

Stacks variables along the given axis.

Implementors