Function arrayfire::min_all [] [src]

pub fn min_all(input: &Array) -> (f64, f64)

Find minimum among all values of the Array

Parameters

  • input is the input Array

Return Values

A tuple containing the minimum value.

Note: For non-complex data type Arrays, second value of tuple is zero.

Examples

use arrayfire::{Dim4, print, randu, min_all};
let dims = Dim4::new(&[5, 5, 1, 1]);
let a = randu::<f32>(dims);
print(&a);
println!("Result : {:?}", min_all(&a));