Dictionary
Thesaurus
Reference
Translate
Web
iteration
5 dictionary results for: Iteration
Dictionary.com Unabridged (v 1.1) - Cite This Source - Share This
it·er·a·tion       [it-uh-rey-shuhn] Pronunciation Key
–noun
1.the act of repeating; a repetition.
2.Mathematics.
a.Also called successive approximation. a problem-solving or computational method in which a succession of approximations, each building on the one preceding, is used to achieve a desired degree of accuracy.
b.an instance of the use of this method.
3.Computers. a repetition of a statement or statements in a program.

[Origin: 1425–75; late ME < L iterātiōn-, s. of iterātiō; see iterate, -ion]
American Heritage Dictionary - Cite This Source - Share This
it·er·a·tion       (ĭt'ə-rā'shən)  Pronunciation Key 
n.  
  1. The act or an instance of iterating; repetition.
  2. Mathematics A computational procedure in which a cycle of operations is repeated, often to approximate the desired result more closely.
  3. Computer Science
    1. The process of repeating a set of instructions a specified number of times or until a specific result is achieved.
    2. One cycle of a set of instructions to be repeated: After ten iterations, the program exited the loop.

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 

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)

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.

Share This:Share This: digg.comShare This: ma.gnolia.comShare This: www.stumbleupon.comShare This: del.icio.usShare This: FacebookShare This: favorites.live.comShare This: www.technorati.comShare This: furl.netShare This: myweb2.search.yahoo.comShare This: www.google.com