[][src]Struct condest::Normest1

pub struct Normest1 { /* fields omitted */ }

Methods

impl Normest1
[src]

pub fn new(n: usize, t: usize) -> Self
[src]

pub fn normest1<S>(&mut self, a: &ArrayBase<S, Ix2>, itmax: usize) -> f64 where
    S: Data<Elem = f64>, 
[src]

Estimate the 1-norm of matrix a using up to itmax iterations.

pub fn normest1_pow<S>(
    &mut self,
    a: &ArrayBase<S, Ix2>,
    m: usize,
    itmax: usize
) -> f64 where
    S: Data<Elem = f64>, 
[src]

Estimate the 1-norm of a marix a to the power m up to itmax iterations.

pub fn normest1_prod<S>(
    &mut self,
    aprod: &[&ArrayBase<S, Ix2>],
    itmax: usize
) -> f64 where
    S: Data<Elem = f64>, 
[src]

Estimate the 1-norm of a product of matrices a1 a2 ... an up to itmax iterations.

Auto Trait Implementations

impl Send for Normest1

impl Sync for Normest1

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.