casacore
|
#include <MArrayUtil.h>
Public Member Functions | |
template<class T > | |
MArray< T > | reorderArray (const MArray< T > &array, const IPosition &newAxisOrder, Bool alwaysCopy=True) |
Reorder the axes of the data in an MArray object
Public interface
This function makes it possible to reorder the axes of an MArray. Both the data and the optional mask are reordered. The resulting array is a copy of the input array with its data moved around according to the new array order. If the order does not change, a copy is returned if the alwaysCopy
is true. Otherwise a reference of the input array is returned.
The newAxisOrder
defines the new axes order. Its length can be less than the dimensionality of the input array. It is appended with the non-specified axes in their natural order. newAxisOrder(i)
gives the axis in the original array which will now get axis i
.
Say that someArray is a 4D array with shape [3,4,5,6]. The non-specified axes get appended to the axis order specification [1,3] resulting in [1,3,0,2].
This means that axis 1 gets axis 0, axis 3 gets axis 1, axis 0 gets axis 2, and axis 2 gets axis 3. Thus the resulting shape is [4,6,3,5] and the data are moved accordingly.
Definition at line 75 of file MArrayUtil.h.
|
inline |
Definition at line 77 of file MArrayUtil.h.
References casacore::array(), and casacore::TableExprNode::isNull().