 | DFColumnPermute Method |
Permutes the objects in this column by the given permutation vector (ranks).
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DFColumn Permute(
params int[] permutation
)
Public Function Permute (
ParamArray permutation As Integer()
) As DFColumn
public:
DFColumn^ Permute(
... array<int>^ permutation
)
member Permute :
permutation : int[] -> DFColumn
Parameters
- permutation Int32
- A permutation vector.
Return Value
DFColumnA reference to self.
Remarks
this[ permutation[i] ] is set to the ith object in the orginal column.
Permutation array must be the same length as the column length.
See Also