[][src]Trait peroxide::operation::extra_ops::Real

pub trait Real: PowOps + TrigOps + ExpLogOps + Add<Output = Self> + Mul<Output = Self> + Div<Output = Self> + Sub<Output = Self> + Add<f64, Output = Self> + Mul<f64, Output = Self> + Div<f64, Output = Self> + Sub<f64, Output = Self> + Clone + Copy {
    fn to_f64(&self) -> f64;
fn from_f64(f: f64) -> Self;
fn to_dual(&self) -> Dual;
fn from_dual(d: Dual) -> Self;
fn to_hyper_dual(&self) -> HyperDual;
fn from_hyper_dual(h: HyperDual) -> Self; }

Required methods

fn to_f64(&self) -> f64

fn from_f64(f: f64) -> Self

fn to_dual(&self) -> Dual

fn from_dual(d: Dual) -> Self

fn to_hyper_dual(&self) -> HyperDual

fn from_hyper_dual(h: HyperDual) -> Self

Loading content...

Implementations on Foreign Types

impl Real for f64[src]

Loading content...

Implementors

impl Real for Number[src]

impl Real for Dual[src]

impl Real for HyperDual[src]

Loading content...