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

pub trait PowOps: Sized {
    fn powi(&self, n: i32) -> Self;
fn powf(&self, f: f64) -> Self;
fn sqrt(&self) -> Self; }

Required methods

fn powi(&self, n: i32) -> Self

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

fn sqrt(&self) -> Self

Loading content...

Implementations on Foreign Types

impl PowOps for f64[src]

Loading content...

Implementors

impl PowOps for Number[src]

impl PowOps for Dual[src]

Power for Dual

impl PowOps for HyperDual[src]

impl PowOps for Polynomial[src]

impl PowOps for Vector[src]

Power operation for Vector

fn powi(&self, n: i32) -> Self[src]

Power usize

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

Power float

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

Sqrt

Loading content...