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
|
!----------------------------------------------------------
!example 3: Saturated Model with Raw Data Input
#NGroups 3
G1
Calculation
Begin Matrices;
X Symm 2 2 Free
M Full 1 2 Free
End Matrices;
Matrix X 1 .4 1
Matrix M 0 0
End
G2
Data NInputvars=2
Rectangular File= testData.rec
Begin Matrices; = Group 1
Means M;
Covariances X;
Option RS
End
G3
Calculation
Begin Matrices; = Group 1
F Full 1 1 =%F2
End Matrices;
Option MxM=ExpMean2.mxm
Option MxX=ExpCov2.mxm
Option MxF=LL2.mxm
Option Format=(8(1x,F13.7))
End
|