pub trait PairwiseExt<A, S, D>where
S: Data<Elem = A>,{
// Required methods
fn maximum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>;
fn minimum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>;
}
Required Methods§
Sourcefn maximum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>
fn maximum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>
Returns the elementwise maximum with another array.
Sourcefn minimum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>
fn minimum_with(&self, other: &ArrayBase<S, D>) -> Array<A, D>
Returns the elementwise minimum with another array.