faer_ext

Trait IntoNalgebraComplex

source
pub trait IntoNalgebraComplex {
    type Nalgebra;

    // Required method
    fn into_nalgebra_complex(self) -> Self::Nalgebra;
}
Available on crate feature nalgebra only.
Expand description

Conversions from external library matrix views into complex nalgebra types.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<'a> IntoNalgebraComplex for MatMut<'a, c32>

source§

impl<'a> IntoNalgebraComplex for MatMut<'a, c64>

source§

impl<'a> IntoNalgebraComplex for MatRef<'a, c32>

source§

impl<'a> IntoNalgebraComplex for MatRef<'a, c64>

source§

impl<'a, T> IntoNalgebraComplex for ArrayView<'a, Complex<T>, Ix2>

Available on crate feature ndarray only.
source§

impl<'a, T> IntoNalgebraComplex for ArrayViewMut<'a, Complex<T>, Ix2>

Available on crate feature ndarray only.

Implementors§