simpleSort {RBioinf} | R Documentation |
The function demonstrates how to access R's internal sorting routines
via the .Call
interface.
simpleSort(x)
x |
The vector to be sorted. |
A simple interface to sorting routines in R. It is intended to be modified following exercises in the accompanying monograph.
The sorted vector.
R. Gentleman
simpleSort(c(4,2,6))