#include <perm.h>
This data structure stores an
permutation matrix
in an array 'perm' such that the operation
is implemented by assigning y[i] = x[perm[i]] for 0 <= i <
.
The transpose operation
is implemented by assigning y[perm[i]] = x[i].
Data Fields | |
| oski_index_t | length |
| |
| oski_index_t * | perm |
==> y[i]=x[perm[i]] | |
1.4.6