Trait concision_core::traits::math::Conjugate

source ·
pub trait Conjugate {
    type Output;

    // Required method
    fn conj(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn conj(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl Conjugate for f32

§

type Output = Complex<f32>

source§

fn conj(&self) -> Self::Output

source§

impl Conjugate for f64

§

type Output = Complex<f64>

source§

fn conj(&self) -> Self::Output

source§

impl<T> Conjugate for Complex<T>
where T: Clone + Signed,

§

type Output = Complex<T>

source§

fn conj(&self) -> Self

source§

impl<T, D> Conjugate for Array<T, D>
where D: Dimension, T: Clone + ComplexFloat,

§

type Output = ArrayBase<OwnedRepr<T>, D>

source§

fn conj(&self) -> Self::Output

Implementors§