pub struct TrsmResult {
pub x: Vec<f32>,
pub n: usize,
pub nrhs: usize,
}Expand description
Triangular solve result.
Fields§
§x: Vec<f32>Solution matrix X, stored row-major n×nrhs.
n: usizeNumber of rows/columns of A.
nrhs: usizeNumber of right-hand sides (columns of B).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TrsmResult
impl RefUnwindSafe for TrsmResult
impl Send for TrsmResult
impl Sync for TrsmResult
impl Unpin for TrsmResult
impl UnsafeUnpin for TrsmResult
impl UnwindSafe for TrsmResult
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