require "narray"
n = 100000
x = NArray.sfloat(n).indgen
y = NArray.sfloat(n).indgen(10)
p x.mul_add(y,0)/(n-1)
