![Thunder Scientific 5A-1MP Owner'S Operation And Maintenance Manual Download Page 35](http://html1.mh-extra.com/html/thunder-scientific/5a-1mp/5a-1mp_owners-operation-and-maintenance-manual_1113432035.webp)
7-
8
________________________________________________________________________
IEEE 488 Example (HP Rocky Mountain BASIC syntax):
100
OUTPUT 705; "AVER = 5"
!Set it to 5 directly.
110
X = 4
This way works too,
120
OUTPUT 705; "aver ="; X
!and sets it to 4.
130
OUTPUT 705; "AVERAGE - 1.080E1" !This makes it 10.8.
140
OUTPUT 705; "AVER?"
!Check its value,
150
ENTER 705; A$
!should be 10.8.
160
DISP VAL(A$), A$
!Displays 10.8, 1.001.
Refer to the IBM BASICA example for an explanation of the preceding program lines.