Trait Gather2D

Source
pub trait Gather2D<T: ScalarOperand + Zero + Copy> {
    // Required method
    fn gather(
        &self,
        indices_rows: &[usize],
        indices_cols: &[usize],
    ) -> Array2<T>;
}

Required Methods§

Source

fn gather(&self, indices_rows: &[usize], indices_cols: &[usize]) -> Array2<T>

Implementations on Foreign Types§

Source§

impl<T: ScalarOperand + Zero + Copy> Gather2D<T> for Array2<T>

Source§

fn gather(&self, indices_rows: &[usize], indices_cols: &[usize]) -> Array2<T>

Implementors§