Content deleted Content added
Andy Dingley (talk | contribs) Reverted 1 edit by JoaquinFerrero (talk): Rv. (TW) |
Replaced the wrong 'b' by 'x' in the first sentence description of the evaluation of y = ax^2+bx+c. |
||
Line 11:
Following the reverse Polish form, an assignment statement to evaluate the formula <math>y = ax^2 + bx + c</math> was written as <code>a x dup × × b x × + c + (y)</code>.
The computer evaluated the expression as follows: the values of <code>a</code>, then <code>
Assuming that the value on the top of the accumulator stack was not required immediately, it would be removed (cleared) by using the operator (<code>;</code>).
|