blob: 857c554ecb12909aa6ece64a5526642be65999f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Incompatibility in that getmask and a.mask returns nomask
# instead of None
from numpy.core.ma import *
import numpy.core.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)
|