I am trying to understand the following SAS code so that I may try and use it in Visual Basic. The SAS code I am using is
START FLEISHMAN;
X1 = COEF[1]
X2 = COEF[2]
X3 = COEF[3]
F = (X1**2+6*X1*X3+2*X2**2+15*X3**2-1)//
(2*X2*(X1**2+24*X1*X3+105*X3**2+2)-SKWENESS)//
...etc.
I understand that formula however I can not find what COEF[x] is doing.
I think it maybe calling the coefficents of matrix 1, 2 and 3 however I can not find any help on this command in SAS.
If anyone knows what COEF[ ] is, it would be greatly appreciated.
Cheers.
START FLEISHMAN;
X1 = COEF[1]
X2 = COEF[2]
X3 = COEF[3]
F = (X1**2+6*X1*X3+2*X2**2+15*X3**2-1)//
(2*X2*(X1**2+24*X1*X3+105*X3**2+2)-SKWENESS)//
...etc.
I understand that formula however I can not find what COEF[x] is doing.
I think it maybe calling the coefficents of matrix 1, 2 and 3 however I can not find any help on this command in SAS.
If anyone knows what COEF[ ] is, it would be greatly appreciated.
Cheers.