peroxide::traits::math

Trait Vector

Source
pub trait Vector {
    type Scalar;

    // Required methods
    fn add_vec(&self, rhs: &Self) -> Self;
    fn sub_vec(&self, rhs: &Self) -> Self;
    fn mul_scalar(&self, rhs: Self::Scalar) -> Self;
}
Expand description

Mathematical Vector

§Description

Vector has two operations : addition, scalar multiplication. And a space of the vector should closed for that operations.

Required Associated Types§

Required Methods§

Source

fn add_vec(&self, rhs: &Self) -> Self

Source

fn sub_vec(&self, rhs: &Self) -> Self

Source

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Vector for f64

Source§

type Scalar = f64

Source§

fn add_vec(&self, rhs: &Self) -> Self

Source§

fn sub_vec(&self, rhs: &Self) -> Self

Source§

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Source§

impl Vector for Vec<AD>

Source§

type Scalar = AD

Source§

fn add_vec(&self, rhs: &Self) -> Self

Source§

fn sub_vec(&self, rhs: &Self) -> Self

Source§

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Source§

impl Vector for Vec<f64>

Source§

type Scalar = f64

Source§

fn add_vec(&self, rhs: &Self) -> Self

Source§

fn sub_vec(&self, rhs: &Self) -> Self

Source§

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Source§

impl Vector for Vec<Complex<f64>>

Source§

type Scalar = Complex<f64>

Source§

fn add_vec(&self, rhs: &Self) -> Self

Source§

fn sub_vec(&self, rhs: &Self) -> Self

Source§

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Source§

impl Vector for Complex<f64>

Source§

type Scalar = Complex<f64>

Source§

fn add_vec(&self, rhs: &Self) -> Self

Source§

fn sub_vec(&self, rhs: &Self) -> Self

Source§

fn mul_scalar(&self, rhs: Self::Scalar) -> Self

Implementors§