Trait alga::linear::MatrixMut [−][src]
The space of all matrices that are stable under modifications of its components, rows and columns.
Required methods
fn set_row_mut(&mut self, i: usize, row: &Self::Row)
[src]
In-place sets the i-th row of this matrix.
fn set_column_mut(&mut self, i: usize, col: &Self::Column)
[src]
In-place sets the i-th col of this matrix.
unsafe fn set_unchecked(&mut self, i: usize, j: usize, val: Self::Field)
[src]
Sets the component at row i
and column j
of this matrix without bound checking.
Provided methods
fn set_row(&self, i: usize, row: &Self::Row) -> Self
[src]
Sets the i-th row of this matrix.
fn set_column(&self, i: usize, col: &Self::Column) -> Self
[src]
Sets the i-th col of this matrix.
fn set(&mut self, i: usize, j: usize, val: Self::Field)
[src]
Sets the component at row i
and column j
of this matrix.