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

pub trait PowOps {
    type Output;
    fn pow(&self, n: usize) -> Self::Output;
fn powf(&self, f: f64) -> Self::Output;
fn sqrt(&self) -> Self::Output; }

Associated Types

type Output

Loading content...

Required methods

fn pow(&self, n: usize) -> Self::Output

fn powf(&self, f: f64) -> Self::Output

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

Loading content...

Implementors

impl PowOps for Dual[src]

Power for Dual

type Output = Dual

impl PowOps for Polynomial[src]

type Output = Polynomial

impl PowOps for Vector[src]

Power operation for Vector

type Output = Vector

fn pow(&self, n: usize) -> Vector[src]

Power usize

fn powf(&self, f: f64) -> Vector[src]

Power float

fn sqrt(&self) -> Vector[src]

Sqrt

Loading content...