pub trait ArrayMathExt<F: Float> {
    fn array_add(self, other: Self) -> Self;
fn array_sub(self, other: Self) -> Self;
fn array_scale(self, value: F) -> Self; }
Expand description

Simple math for array

Required methods

Implementations on Foreign Types

Adds two arrays. Returns x + y.

Subtracts two arrays. Returns x - y.

Scale one array with a value.

Implementors