|
STRING INTERACTIONName:
As an example, suppose we have the parameters J1, J2, and J3 where J1 = 3, J2 = 1, and J3 = 5, then this command will create a string containing
The parameters identify factors of interest, so they will typically contain integers in the range 1 to k where k is the number of factors in the design. If the parameter is negative, then that parameter will not be included in the output string.
where <sout> is the name of the resulting string; and <j1> ... <jk> is a list of parameters.
LET SOUT = STRING INTERACTION J1 J2 J3 J4 J5
. Step 1: Define inputs . let j1 = 1 let j2 = 2 let j3 = 3 let j4 = 4 let j5 = 5 . . Step 2: Execute the command . let stnew = string interaction j1 j2 j3 j4 j5 . let j4 = -9999 let j5 = -9999 let stnew2 = string interaction j1 j2 j3 j4 j5 . print "stnew: ^stnew" print "stnew2: ^stnew2"The following output is generated stnew: X1 * X2 * X3 * X4 * X5 stnew2: X1 * X2 * X3
|
Privacy
Policy/Security Notice
NIST is an agency of the U.S.
Commerce Department.
Date created: 04/04/2018 |