(def x (rand.n 100)) ;; 100 random numbers from a normal(0,1) distribution (def y (+ (exp x) (rand.n 100))) ;; an exponential function with error (def result (regress (list x) y)) ;; regress x on y and store the results