Prepare for database
The feedback to the database is controlled in label 3. VarStr is the generic string variable used for each type to send the data to the database by assigning the proper type numbers and/or codes to the necessary R variables. The R variables are explained later in this manual.
It is often desirable to change the default to the answer last given in this label, as this will often improve the speed of working. An example of label 3 is
label 3
Def_norms[20]=Ans[1]
Def_norms[21]=Ans[2]
Varstr='r2 ^Ans[1] r3 ^Ans[2]'
exit
The answers Ans[1] and Ans[2] are assigned to both the default strings Def_norms[20] and [21] and to VarStr.
Do not forget to use the ^ symbol in front of the Ans[x] variables in the assignment to the Varstr variable. |