pub struct QrOptions {
pub gauge: QrGauge,
}Expand description
Options for QR decomposition.
§Examples
use tenferro_linalg::{QrGauge, QrOptions};
let options = QrOptions::default().gauge(QrGauge::PositiveDiagonal);
assert_eq!(options.gauge, QrGauge::PositiveDiagonal);Fields§
§gauge: QrGaugeQR sign or phase convention.
Implementations§
Trait Implementations§
impl Copy for QrOptions
impl Eq for QrOptions
impl StructuralPartialEq for QrOptions
Auto Trait Implementations§
impl Freeze for QrOptions
impl RefUnwindSafe for QrOptions
impl Send for QrOptions
impl Sync for QrOptions
impl Unpin for QrOptions
impl UnsafeUnpin for QrOptions
impl UnwindSafe for QrOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
fn rand<T>(&self, rng: &mut (impl Rng + ?Sized)) -> Twhere
Self: Distribution<T>,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more