pub fn min_all<T>(
input: &Array<T>,
) -> (<<T as HasAfEnum>::InType as HasAfEnum>::BaseType, <<T as HasAfEnum>::InType as HasAfEnum>::BaseType)Expand description
Find minimum among all values of the Array
§Parameters
inputis 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));