pub struct MatrixExpConfig {
pub n: u32,
pub precision: String,
pub pade_order: u32,
}Expand description
Configuration for matrix exponential computation.
Fields§
§n: u32Matrix dimension (n × n).
precision: StringPrecision: "f32" or "f64".
pade_order: u32Padé approximant order (3, 5, 7, 9, or 13). Default: 13.
Implementations§
Trait Implementations§
Source§impl Clone for MatrixExpConfig
impl Clone for MatrixExpConfig
Source§fn clone(&self) -> MatrixExpConfig
fn clone(&self) -> MatrixExpConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MatrixExpConfig
impl RefUnwindSafe for MatrixExpConfig
impl Send for MatrixExpConfig
impl Sync for MatrixExpConfig
impl Unpin for MatrixExpConfig
impl UnsafeUnpin for MatrixExpConfig
impl UnwindSafe for MatrixExpConfig
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