(a, indices, axis=None, out=None, mode='raise')
| 6912 | count = _frommethod('count') |
| 6913 | |
| 6914 | def take(a, indices, axis=None, out=None, mode='raise'): |
| 6915 | """ |
| 6916 | """ |
| 6917 | a = masked_array(a) |
| 6918 | return a.take(indices, axis=axis, out=out, mode=mode) |
| 6919 | |
| 6920 | |
| 6921 | def power(a, b, third=None): |