示例#1
0
文件: grid.py 项目: relaxar/mcidasv
def averageOverTime(field, makeTimes=0):
    """Average the values in each time step
    If makeTimes is true (1) then we return a field mapping all of the times
    to the average. Else we just return the average """
    return GridMath.averageOverTime(field, makeTimes)
示例#2
0
def averageOverTime(field,makeTimes=0):
    """Average the values in each time step
    If makeTimes is true (1) then we return a field mapping all of the times
    to the average. Else we just return the average """
    return GridMath.averageOverTime(field,makeTimes);