Possible Duplicate:
How to nest my own “times” function to get powers
What I want to do is something like :
Sin[...Sin[Sin[Sin[Sin[x]]]]]
Basically, defining a function that maps a said function on an argument said number of times.
What I want to do is something like :
Basically, defining a function that maps a said function on an argument said number of times. |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I get an easy one !!
|
|||
|
|
NestandNestList. reference.wolfram.com/mathematica/ref/NestList.html Don't forget to checkNestWhile,NestWhileList,FixedPoint,FixedPointList. And this tutorial: reference.wolfram.com/mathematica/tutorial/… – David Carraher Dec 15 '12 at 14:04Nest[Sin, x, 5], look at this mathematica.stackexchange.com/questions/7941/… – Artes Dec 15 '12 at 14:06