Related Searches
on Ask.com
5 dictionary results for: Iteration
Dictionary.com Unabridged (v 1.1) - Cite This Source - Share This
it·er·a·tion
[it-uh-rey-shuh
n] Pronunciation Key
[it-uh-rey-shuh
n] Pronunciation Key –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 (v 1.1)
Based on the Random House Unabridged Dictionary, © Random House, Inc. 2006.
Based on the Random House Unabridged Dictionary, © Random House, Inc. 2006.
American Heritage Dictionary - Cite This Source - Share This
| it·er·a·tion
(ĭt'ə-rā'shən) Pronunciation Key
n.
|
(Download Now or Buy the Book)
The American Heritage® Dictionary of the English Language, Fourth Edition
Copyright © 2006 by Houghton Mifflin Company.
Published by Houghton Mifflin Company. All rights reserved.
The American Heritage® Dictionary of the English Language, Fourth Edition
Copyright © 2006 by Houghton Mifflin Company.
Published by Houghton Mifflin Company. All rights reserved.
WordNet - Cite This Source - Share This
| iteration | |
noun | |
| 1. | (computer science) a single execution of a set of instructions that are to be repeated; "the solution took hundreds of iterations" |
| 2. | (computer science) executing the same set of instructions a given number of times or until a specified result is obtained; "the solution is obtained by iteration" |
| 3. | doing or saying again; a repeated performance |
WordNet® 3.0, © 2006 by Princeton University.
Free On-line Dictionary of Computing - Cite This Source - Share This
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
Webster's Revised Unabridged Dictionary - Cite This Source - Share This
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.
Copyright © 2008, Dictionary.com, LLC. All rights reserved.













