SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Politics : Bill Clinton Scandal - SANITY CHECK -- Ignore unavailable to you. Want to Upgrade?


To: Scarecrow who wrote (63076)12/6/1999 1:10:00 PM
From: truedog  Read Replies (1) | Respond to of 67261
 
Scarecrow, you are talking to an inoperative, carbon based, unit. TD



To: Scarecrow who wrote (63076)12/8/1999 7:03:00 AM
From: lorrie coey  Respond to of 67261
 
All things political are iterations of an erect penis...play with that notion for a while!

"iteration"

Iteration \It'er*a"tion\, n. [L. iteratio.] Recital or performance a second time; repetition. --Bacon.

What needs this iteration, woman? --Shak.

From WordNet (r) 1.6 (wn)

iteration n : doing or saying again [syn: {reiteration}]

From The Free On-line Dictionary of Computing (15Feb98) (foldoc)

iteration

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

The "territory" to which I refer is the territory of male society...the New Pecker Order...heard of it?



To: Scarecrow who wrote (63076)12/8/1999 9:23:00 AM
From: lorrie coey  Read Replies (2) | Respond to of 67261
 
From Jargon File (4.0.0/24 July 1996) (jargon)

nonlinear adj : math; not directly proportional [ant: {linear}]
nonlinear /adj./ [scientific computation]

1. Behaving in an erratic and unpredictable fashion; unstable. When used to describe the behavior of a machine or program, **it suggests that said machine or program is being forced to run far outside of design specifications. This behavior may be induced by unreasonable inputs, or may be triggered when a more mundane bug sends the computation far off from its expected course.

2. When describing the behavior of a person, suggests a tantrum or a {flame}.

"When you talk to Bob, don't mention the drug problem or he'll go nonlinear for hours."

In this context, 'go nonlinear' connotes 'blow up out of proportion' (proportion connotes linearity).

From The Free On-line Dictionary of Computing (15Feb98) (foldoc)

nonlinear

(Scientific computation) A property of a system whose output is not proportional to its input. For example, a {transistor} has a region of input voltages for which its output voltage is found by multiplying the input voltage by the gain of the transistor.
Outside this region though, the transistor behaves non-linearly, meaning that it does not obey this simple equation. Whoa!!

Thusly...

The behavior of a system containing non-linear components is thus harder to model and to predict.