pub fn array_div<T, D>( a: &Array<T, D>, b: &Array<T, D>, ) -> Result<Array<T, D>, FerrayError>where T: Element + Div<Output = T> + Copy, D: Dimension,
Array division (delegates to arithmetic::divide).
arithmetic::divide