pub struct MatrixLogConfig {
pub n: u32,
pub precision: String,
pub max_sqrt_iters: u32,
}Expand description
Configuration for matrix logarithm computation.
Fields§
§n: u32Matrix dimension (n × n).
precision: StringPrecision: "f32" or "f64".
max_sqrt_iters: u32Maximum number of square-root iterations. Default: 100.
Implementations§
Trait Implementations§
Source§impl Clone for MatrixLogConfig
impl Clone for MatrixLogConfig
Source§fn clone(&self) -> MatrixLogConfig
fn clone(&self) -> MatrixLogConfig
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 MatrixLogConfig
impl RefUnwindSafe for MatrixLogConfig
impl Send for MatrixLogConfig
impl Sync for MatrixLogConfig
impl Unpin for MatrixLogConfig
impl UnsafeUnpin for MatrixLogConfig
impl UnwindSafe for MatrixLogConfig
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