TRANSPOSE (VAR,DIM1,DIM2) Compute the transpose along two given dimensions (Ferret v7.2 and higher)
| Arguments: | VAR | Variable to transpose |
| IDIM1 | Index 1, 2, ... or 6 indicating the first direction for the transpose | |
| IDIM2 |
Index 1, 2, ... or 6 indicating the first dimension for the transpose |
|
| Result Axes: | X |
inherited from argument(s) |
| Y | inherited from argument(s) | |
| Z | inherited from argument(s) | |
| T | inherited from argument(s) | |
| E | inherited from argument(s) | |
| F | inherited from argument(s) |
This function is a "direction-changing function", whose result is determined by the value of specific direction arguments. Those arguments in fact tell Ferret to internally choose one of a set of ordinary functions depending on the directions given in arguments 2 and 3.
TRANSPOSE (var, 1, 2) calls the function TRANSPOSE_XY(VAR) transposes X and Y axes of given variable
TRANSPOSE (var, 1, 4) calls the function TRANSPOSE_XT(VAR) transposes X and T axes of given variable
TRANSPOSE (var, 4, 6) calls the function TRANSPOSE_TF(VAR) transposes T and F axes of given variable


