/usr/share/freemat/help/text/permute.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | PERMUTE PERMUTE Array Permutation Function
Usage
The permute function rearranges the contents of an array according
to the specified permutation vector. The syntax for its use is
y = permute(x,p)
where p is a permutation vector - i.e., a vector containing the
integers 1...ndims(x) each occuring exactly once. The resulting
array y contains the same data as the array x, but ordered
according to the permutation. This function is a generalization of
the matrix transpose operation.
|