[][src]Function arrayfire::clamp

pub fn clamp<T, C>(
    input: &Array<T>,
    arg1: &C,
    arg2: &C,
    batch: bool
) -> Array<<T as ImplicitPromote<<C as Convertable>::OutType>>::Output> where
    T: ImplicitPromote<<C as Convertable>::OutType>,
    C: Convertable,
    <C as Convertable>::OutType: ImplicitPromote<T>, 

Clamp the values of Array

Parameters

Both parameters arg1 and arg2 can be either an Array or a value of rust integral type.

Return Values

An Array with results of the binary operation.

Important Notes