Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Core Language > Functional Programming > Functional Iteration >
Mathematica > Core Language > Procedural Programming > Looping Constructs > Functional Iteration >

NestWhileList

NestWhileList[f, expr, test]
generates a list of the results of applying f repeatedly, starting with expr, and continuing until applying test to the result no longer yields True.
NestWhileList[f, expr, test, m]
supplies the most recent m results as arguments for test at each step.
NestWhileList[f, expr, test, All]
supplies all results so far as arguments for test at each step.
NestWhileList[f, expr, test, m, max]
applies f at most max times.
  • The last element of the list returned by NestWhileList[f, expr, test] is always an expression to which applying test does not yield True.
  • NestWhileList[f, expr, test, m] at each step evaluates test[res1, res2, ..., resm]. It does not put the results resi in a list.
  • The resi are given in the order they are generated, with the most recent coming last.
  • NestWhileList[f, expr, test, m] does not start applying test until at least m results have been generated.  »
  • NestWhileList[f, expr, test, {mmin, m}] does not start applying test until at least mmin results have been generated. At each step it then supplies as arguments to test as many recent results as possible, up to a maximum of m.  »
  • NestWhileList[f, expr, test, m, max, n] applies f an extra n times, appending the results to the list generated. »
  • NestWhileList[f, expr, test, m, max, -n] drops the last n elements from the list generated.  »
Keep dividing by 2 until the result is no longer an even number:
Iterate taking logarithms until the result is no longer positive:
Keep dividing by 2 until the result is no longer an even number:
In[1]:=
Click for copyable input
Out[1]=
 
Iterate taking logarithms until the result is no longer positive:
In[1]:=
Click for copyable input
Out[1]=
Start comparisons after 4 iterations, and compare using the 4 last values:
Start comparisons after 4 iterations, and compare using the 6 last values:
Always compare all values generated:
Stop after at most 4 steps, even if the condition is still True:
Continue until the result is no longer greater than 1:
Perform one more step after the condition is no longer True:
Drop the last value generated (for which the test was no longer True):
Find successive integers until a prime is reached:
Find the multiplicative order of 2 modulo 19:
Use MultiplicativeOrder to compute directly:
Find the orbit of 4 under the mapping 5x  mod 7:
Keep applying iterations in the 3n+1 problem until the results repeat:
Exclude the first repeating element from the output:
Apply Newton iterations for until successive results are within 0.001.
These two forms are equivalent:
NestWhileList returns all intermediate values of NestWhile:
FixedPointList always compares the last two values; these two forms are equivalent:
Find the digits of a number:
Distance of two vertices in a graph:
A plot of the graph:
New in 4
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team