Suppose you have a function that iterates x value over some kind of a range or an interval, like so:
for (x = MIN_CONST; x <= MAX_CONST; $x += STEP_CONST)
{
//x is a ____ (what)?
y = library_function(x);
print y
}
An x value (out of sequential x values assigned inside the loop) can be seen as a "probe" or an "iterant", or "something".
I am looking for a defined, (or a better) name for this value.
If you like you can imagine a teacher explaining Newton's Method to students, and each x value gotten via the method would be called _____ what?