Skip to main content

Conjugate

Trait 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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Conjugate for f32

Source§

type Output = Complex<f32>

Source§

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

Source§

impl Conjugate for f64

Source§

type Output = Complex<f64>

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Output = Complex<T>

Source§

fn conj(&self) -> Self

Implementors§