summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/ma.py
blob: 81555570a225aef40e2d043cb002e454c2ab79a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Incompatibility in that getmask and a.mask returns nomask
#  instead of None

from numpy.ma import *
import numpy.ma as nca

def repeat(a, repeats, axis=0):
    return nca.repeat(a, repeats, axis)

def average(a, axis=0, weights=None, returned=0):
    return nca.average(a, axis, weights, returned)

def take(a, indices, axis=0):
    return nca.average(a, indices, axis=0)