pub fn cross<T>( a: &Array<T, Ix1>, b: &Array<T, Ix1>, ) -> Result<Array<T, Ix1>, FerrayError>where T: Element + Mul<Output = T> + Sub<Output = T> + Copy,
Cross product of two 3-element 1-D arrays.