| This is read-only version of the old wiki, feel free to browse it for materials. If you want to share your own materials, please use GeoGebraTube instead. You are also welcome to help us enhance the new wiki. If any questions arise, please contact the webmaster. |
IterationList Command
Syntax
IterationList[function f, number x0, number n]
Action
Creates a list of n+1 numbers whose elements are generated by iterating f starting with x0.
Example:
f(x)=x2
L = IterationList[f,2,3]
L be a list containing the elements {2, 4, 16, 256}