Trait Column

Source
pub trait Column {
    type Output;

    // Required method
    fn get_column(&self, col: usize) -> Self::Output;
}
Expand description

This type abstracts a matrix where you can get a copy of a column

Required Associated Types§

Required Methods§

Source

fn get_column(&self, col: usize) -> Self::Output

Get a copy of a given column of a matrix

Implementors§