You don't need to call Parallel Colt directly to generate random numbers in Incanter. There are two different methods.
First, there is the original random number generator functions in incanter.stats:
sample-normal
sample-poisson
sample-uniform
sample-t
sample-net-binomial
sample-binomial
etc..
Each function takes the number of values to generate, as its first argument, as well as optional args for setting the parameters of the distribution to draw from. For instance, to draw 100 values from a normal distribution with a mean of -2 and a standard deviation of sqrt of 0.5, do this:
(use '[incanter core stats])
(sample-normal 100 :mean -2 :sd (sqrt 0.5))
The second method for generating random numbers is to use functions in the incanter.distributions namespace.
(require '[incanter.distributions :as dist])
(dist/draw (dist/normal-distribution -2 (sqrt 0.5)))
David