Mathematica 9 is now available

FixedPoint

Usage

FixedPoint[f, expr] starts with expr, then applies f repeatedly until the result no longer changes.


Notes

FixedPoint[f, expr, n] stops after at most n steps.
FixedPoint always returns the last result it gets.
• You can use Throw to exit from FixedPoint before it is finished.
FixedPoint[f, expr] applies SameQ to successive pairs of results to determine whether a fixed point has been reached.
NestWhile[f, expr, comp, 2] provides a way to use a general comparison function.
• See Section 2.2.2.
• New in Version 1; modified in 3.


Any questions about topics on this page? Click here to get an individual response.Buy NowMore Information
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.