Related Searches
on Ask.com
iteration - 4 dictionary results
it⋅er⋅a⋅tion
[it-uh-rey-shuh
n]
–noun
| 1. | the act of repeating; a repetition. |
| 2. | Mathematics.
|
| 3. | Computers. a repetition of a statement or statements in a program. |
Dictionary.com Unabridged
Based on the Random House Dictionary, © Random House, Inc. 2009.
Cite This Source
Based on the Random House Dictionary, © Random House, Inc. 2009.
Cite This Source
|
Link To iteration
The American Heritage® Dictionary of the English Language, Fourth Edition
Copyright © 2009 by Houghton Mifflin Company.
Published by Houghton Mifflin Company. All rights reserved.
Cite This Source
Copyright © 2009 by Houghton Mifflin Company.
Published by Houghton Mifflin Company. All rights reserved.
Cite This Source
Iteration
It`er*a"tion\, n. [L. iteratio.] Recital or performance a second time; repetition. --Bacon. What needs this iteration, woman? --Shak.
Webster's Revised Unabridged Dictionary, © 1996, 1998 MICRA, Inc.
Cite This Source
Cite This Source
iteration programming
Repetition of a sequence of instructions. A fundamental part of many algorithms. Iteration is characterised by a set of initial conditions, an iterative step and a termination condition.
A well known example of iteration in mathematics is Newton-Raphson iteration. Iteration in programs is expressed using loops, e.g. in C:
new_x = n/2; do x = new_x; new_x = 0.5 * (x + n/x); while (abs(new_x-x) > epsilon);
Iteration can be expressed in functional languages using recursion:
solve x n = if abs(new_x-x) > epsilon then solve new_x n else new_x where new_x = 0.5 * (x + n/x)
solve n/2 n
(1998-04-04)
The Free On-line Dictionary of Computing, © 1993-2007 Denis Howe
Cite This Source
Cite This Source
Copyright © 2009, Dictionary.com, LLC. All rights reserved.

