pub enum MatType {
General(usize, usize),
SymPack(usize),
}
Expand description
Matrix type and size
Variants§
General(usize, usize)
General matrix with a number of rows and a number of columns.
SymPack(usize)
Symmetric matrix, supplied in packed form, with a number of rows and columns.
Implementations§
Trait Implementations§
impl Copy for MatType
impl StructuralPartialEq for MatType
Auto Trait Implementations§
impl Freeze for MatType
impl RefUnwindSafe for MatType
impl Send for MatType
impl Sync for MatType
impl Unpin for MatType
impl UnwindSafe for MatType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more