Performs an axis-aligned traspose of a :ref:`MDHistoWorkspace <MDHistoWorkspace>`. Default *Axes* setting gives not transpose. It is possible to remove dimensions from the input workspace by omitting those dimension indexes from the *Axes* property. *Axes* are zero-based indexes.
Usage
-----
**Example - TransposeMD**
.. testcode:: TransposeMDExample
def print_dims(ws):
for i in range(ws.getNumDims()):
print 'Dimension %i is %s' % (i, ws.getDimension(i).getName())