pub fn cumulative_sum<T>( array: &Array<T>, axis: Option<isize>, _out: Option<&mut Array<T>>, ) -> Result<Array<T>>where T: Float + Clone + Add<Output = T> + Send + Sync + 'static,
Alias for cumsum - Return the cumulative sum of array elements