Function michaelis(w,x) Wave w; Variable x Variable vmax, km, y vmax = w[0] km = w[1] y = vmax*x/(km+x) return y End