Comment on Data Science in Julia for HackersparentComments−ced5yWhat do you mean, "map values"? There is [sin(x) for x in vec] map(sin, vec) sin.(vec) which are roughly equivalent? Is that what you're referring to?−snicker75yDon't forget the "lazy" version: (sin(x) for x in vec)
Comments
What do you mean, "map values"? There is
which are roughly equivalent? Is that what you're referring to?Don't forget the "lazy" version: (sin(x) for x in vec)