First time here? Check out the FAQ!
answered 2011-12-11 17:11:41 +0100
Use python's built-in map function:
f(x) = x*exp(x) L = [1,2,3,4,19] M = map(f, L)