[][src]Trait rust_blas::vector::ops::Iamax

pub trait Iamax: Sized {
    fn iamax<V: ?Sized + Vector<Self>>(x: &V) -> usize;
}

Finds the index of the element with maximum absolute value in a vector.

Complex vectors maximize the value |Re(x_k)| + |Im(x_k)|.

The first index with a maximum is returned.

Required methods

fn iamax<V: ?Sized + Vector<Self>>(x: &V) -> usize

Loading content...

Implementations on Foreign Types

impl Iamax for f32[src]

impl Iamax for f64[src]

impl Iamax for Complex32[src]

impl Iamax for Complex64[src]

Loading content...

Implementors

Loading content...