This example demonstrates the creation of a statement and its assigned value:
Statement |
Assigned Value |
NUMBER/A(3),B(3) |
|
DATA/A,1,2,3 |
A(1)=1,A(2)=2,A(3)=3 |
B=SCALVF(3,A) |
B(1)=3,B(2)=6,B(3)=9 |