module documentation

Provides three functions for computing prefix averages of a numeric sequence.

Function prefix_average1 Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].
Function prefix_average2 Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].
Function prefix_average3 Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].
def prefix_average1(S):

Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].

def prefix_average2(S):

Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].

def prefix_average3(S):

Return a list such that, for all j, A[j] equals the average of S[0], ..., S[j].