1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#NGroups 1
#define latent 0
#define infile 4
#define meas 4
#define m 4
Title Multiple Regression
Data NObservations=100 NInput=infile
Rectangular File=myRegData.txt
Labels w x y z
Begin Matrices;
A Full m m ! RAM specification matrices
S Symm m m !
F Full meas m !
I Iden m m ! Identity Matrix
M Full 1 m ! Means matrix
End Matrices;
Specify A
0 1 0 2
0 0 0 0
0 3 0 4
0 0 0 0
Matrix A
0 1 0 1
0 0 0 0
0 1 0 1
0 0 0 0
Specify S
5
0 6
0 0 7
0 13 0 8
Matrix S
1
0 1
0 0 1
0 .5 0 1
Matrix F
1 0 0 0
0 1 0 0
0 0 1 0
0 0 0 1
Specify M
9 10 11 12
Covariance F & ((I-A)~ & S) ; ! RAM formula
Means F * (I-A)~ * M'; ! Means
Options Rsiduals
End
|