Returns a masked array containing the data of a, but with a new shape. The result is a view to the original array; if this is not possible, a ValueError is raised.
Parameters: | shape : shape tuple or int
order : {‘C’, ‘F’}, optional
|
---|---|
Returns: | reshaped_array : array
|
Notes
If you want to modify the shape in place, please use a.shape = s
Examples
>>> x = np.ma.array([[1,2],[3,4]], mask=[1,0,0,1])
>>> print x
[[-- 2]
[3 --]]
>>> x = x.reshape((4,1))
>>> print x
[[--]
[2]
[3]
[--]]