Function arrayfire::max_all[][src]

pub fn max_all<T: HasAfEnum>(input: &Array<T>) -> (f64, f64)

Find maximum among all values of the Array

Parameters

  • input is the input Array

Return Values

A tuple containing the maximum value.

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

Examples

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