Function arrayfire::product_nan_all
[−]
[src]
pub fn product_nan_all(input: &Array, val: f64) -> (f64, f64)
Product of all values using user provided value for NAN
Compute the product of all the values of the input Array after replacing any NAN values with val
Parameters
inputis the input Arrayvalis the val that replaces allNANvalues of the Array before reduction operation is performed.
Return Values
A tuple of product result.
Note: For non-complex data type Arrays, second value of tuple is zero.