cummean(u::AbstractArray{T,N}; dims=N) where {T,N}
Compute the cumulative mean of an array `u` along the specified dimension `dims`. Returns an array of the same size as `u`, containing the cumulative mean along the specified dimension.
"""
function cummean(u::AbstractArray{T,N};dims=N)where{T,N}
sz=ntuple(i->i==dims?size(u,dims):1,N)
cumsum(u;dims)./reshape(1:size(u,dims),sz)
end
"""
cumvar(u::AbstractArray{T,N}; dims=N, corrected::Bool=true) where {T,N}
Compute the optionally corrected cumulative variance of an array `u` along the specified dimension `dims`. Returns an array of the same size as `u`, containing the cumulative variance along the specified dimension.
"""
function cumvar(u::AbstractArray{T,N};dims=N,corrected::Bool=true)where{T,N}