Find a function FUN that leads to the following output:
curve(FUN, from = -10, to = 10, col = "red", ylim = c(-2, 2))
curve(sin, add = TRUE)
grid()
Hint: aim to keep the answer simple. The main logic of the function can often be summarize...
[Read more...]