[][src]Trait peroxide::traits::num::TrigOps

pub trait TrigOps: Sized + Div<Output = Self> {
    pub fn sin_cos(&self) -> (Self, Self);
pub fn sinh_cosh(&self) -> (Self, Self);
pub fn asin(&self) -> Self;
pub fn acos(&self) -> Self;
pub fn atan(&self) -> Self;
pub fn asinh(&self) -> Self;
pub fn acosh(&self) -> Self;
pub fn atanh(&self) -> Self; pub fn sin(&self) -> Self { ... }
pub fn cos(&self) -> Self { ... }
pub fn tan(&self) -> Self { ... }
pub fn sinh(&self) -> Self { ... }
pub fn cosh(&self) -> Self { ... }
pub fn tanh(&self) -> Self { ... } }

Required methods

pub fn sin_cos(&self) -> (Self, Self)[src]

pub fn sinh_cosh(&self) -> (Self, Self)[src]

pub fn asin(&self) -> Self[src]

pub fn acos(&self) -> Self[src]

pub fn atan(&self) -> Self[src]

pub fn asinh(&self) -> Self[src]

pub fn acosh(&self) -> Self[src]

pub fn atanh(&self) -> Self[src]

Loading content...

Provided methods

pub fn sin(&self) -> Self[src]

pub fn cos(&self) -> Self[src]

pub fn tan(&self) -> Self[src]

pub fn sinh(&self) -> Self[src]

pub fn cosh(&self) -> Self[src]

pub fn tanh(&self) -> Self[src]

Loading content...

Implementations on Foreign Types

impl TrigOps for f64[src]

Loading content...

Implementors

impl TrigOps for AD[src]

impl TrigOps for Number[src]

impl TrigOps for Dual[src]

Trigonometric function with Dual

impl TrigOps for HyperDual[src]

Loading content...