[−][src]Function arrayfire::min
pub fn min<T>(input: &Array<T>, dim: i32) -> Array<T::InType> where
T: HasAfEnum,
T::InType: HasAfEnum,
Find minimum among elements of given dimension
Parameters
input
- Input Arraydim
- Dimension along which the input Array will be reduced
Return Values
Result Array after finding minimum among elements along a given dimension
Examples
use arrayfire::{Dim4, print, randu, min}; let dims = Dim4::new(&[5, 3, 1, 1]); let a = randu::<f32>(dims); print(&a); let b = min(&a, 0); print(&b); let c = min(&a, 1); print(&c);