Exchanging Values


In addition to storing, recalling, and performing memory arithmetic, you can exchange the displayed value with a stored value.


Exchanging

The [ EXC ] key followed by the address of a data register exchanges the displayed value with the value stored in the specified register.

Exchanging values can eliminate the need to perform separate store and recall operations.

Example

Evaluate x² + 4xy + 2y² where x = .25 and y = 1.2. (This example uses alphabetic addressing).

Procedure

Press

Display

Clear display[ CLEAR ]D_McSSNB
Store x.25
[ STO ] A
D_SawS1C
Evaluate x²[ x² ] [ + ]D_QllNVF
Enter y1.2 [ × ]D_snNJI4
Store y, recall x[ EXC ] AD_SawS1C
Evaluate x² + 4xy[ × ] 4
[ + ]
D_XWs5WO
Recall y2 [ × ]
[ RCL ] A
D_2lRBku
Evaluate y²[ x² ]D_ovCRSd
Display result[ = ]D_DvgG7m


Back