** Mx startup successful ** **MX-PC 1.61i** Job started on 03/09/06 at 09:49:37 ! SCRIPT NAME : lingrow.mx (jh) ! GOAL : To evaluate bivariate linear growth curve model for heritability estimation of latent variables: intercept and slope ! DATA : continuous ! INPUT : raw data ! UNI/BI/MULTI : uni (longitudinal observations) ! DATA-GROUPS : MZ, DZ-SS ! MEANS MODEL : grand mean, sex effect ! VARIANCE COVARIANCE MODEL(S) : 1.ACE , 2.ACE orthogonal, 3. AE, 4. ADE ! Downloading Mx software: ! Mx script's library: ! GenomEUtwin lingrow.mx ! ! Script for the analysis of (simulated) univariate ! continuous longitudinal twin data in wave representation. ! ! Model: Linear growthcurve model. ! Biometric model (ACE) for slopes and intercepts. The following MX script lines were read for group 1 #DEFINE NT 4 #DEFINE NTX2 8 ! TWICE THE NUMBER OG TIMEPOINTS. #DEFINE NF 2 ! NUMBER OF FACTORS. #DEFINE NFX2 4 ! TWICE THE NUMBER OF FACTORS. #DEFINE NINPUT 11 ! NUMBER OF INPUT VARIABLES (4 VARIABLES FOR EACH TWIN, PLUS FAMILY ID, SEX, ZYGOSITY). GROUP #1 INITIALIZATION CALCULATION NG=3 BEGIN MATRICES; F FULL NT 2 FIXED ! MATRIX OF FACTOR LOADINGS X LOWER 2 2 FREE ! CHOLESKY FACTOR FOR GENETIC (CO)VARIANCE Y LOWER 2 2 FREE ! CHOLESKY FACTOR FOR VARIANCE DUE TO SHARED COVARIANCE Z LOWER 2 2 FREE ! CHOLESKY FACTOR FOR VARIANCE DUE TO NON-SHARED ENVIRONMENT V LOWER 2 2 FIXED ! CHOLESKY FACTOR FOR GENETIC DOMINANT (CO)VARIANCE L FULL 1 1 FREE ! CHOLESKY FACTOR FOR RESIDUAL VARIANCE. B IDEN NT NT FIXED ! IDENTITY MATRIX J IDEN NF NF FIXED ! IDENTITY MATRIX W ZERO NT NT FIXED ! ZERO MATRIX H FULL 1 1 FIXED ! SCALAR = 1/2 I FULL 1 1 FIXED ! SCALAR = 1/4 Q FULL 2 1 FREE ! MEAN INTERCEPT & SLOPE N FULL 1 NT FIXED ! EFFECT OF COVARIATE END MATRICES; MATRIX H .5 MATRIX I .25 MATRIX F 1 0 1 1 1 2 1 3 START -0.5 ALL ST 0.2766 X(1,1) ST -0.0033 X(2,1) ST -0.0014 X(2,2) ST 0.27152 Y(1,1) ST -0.0032231 Y(2,1) ST -0.000000007 Y(2,2) ST 0.4301 Z(1,1) ST -0.0052 Z(2,1) ST 0.0011 Z(2,2) START 3.4923 Q(1,1) START -0.0028 Q(2,1) START 0.0582 L(1,1) BOUND -100 100 ALL !START 0.05 X(1,1) X(2,2) Y(1,1) Y(2,2) Z(1,1) Z(2,2) !START 0.05 X(2,1) Y(2,1) Z(2,1) BEGIN ALGEBRA; A = X*X'; C = Y*Y'; E = Z*Z'; D = V*V'; K =((J.(A + D + C + E))~*A)|((J.(A + D + C + E))~*C)|((J.(A + D + C + E))~*E); ! SCALED COVARIANCE MATRIX M = A+D+C+E | A+D+C _ A+D+C | A+D+C+E; ! COVARIANCE MATRIX OF INTERCEPT AND SLOPE FOR MZ PAIR S = A+D+C+E | H@A+I@D+C _ H@A+I@D+C | A+D+C+E; ! COVARIANCE MATRIX OF INTERCEPT AND SLOPE FOR DZ PAIR G = (L*L')@B | W _ W | (L*L')@B; ! MATRIX OF RESIDUAL VARIANCE P = \STND(A) | \STND(E); END ALGEBRA; !INTERVAL ! K(1,1,1) K(1,2,2) K(1,1,3) K(1,2,4) K(1,1,5) K(1,2,6) !INTERVAL ! Q(1,1,1) Q(1,2,1) !INTERVAL ! N(1,1,1) N(1,1,2) N(1,1,3) N(1,1,4) !INTERVAL ! P(1,2,1) P(1,2,3) END The following MX script lines were read for group 2 GROUP #2 MZ TWINS DATA NI=NINPUT ! NUMBER OF INPUTVARIABLES RECTANGULAR FILE=EXAMPLE4.DAT ! INPUT FILE CONTAINING RAW DATA Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 1000 records with data that contained a total of 11000 observations LABELS PAIRID SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 ZYGOS SELECT IF ZYGOS = 1 ; ! MZ'S ONLY FOR THIS GROUP NOTE: Select if yields 400 data vectors for analysis NOTE: Vectors contain a total of 4400 observations SELECT SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 ; DEFINITION SEX; NOTE: Selection yields 400 data vectors for analysis NOTE: Vectors contain a total of 3600 observations BEGIN MATRICES; NOTE: Definition yields 400 data vectors for analysis NOTE: Vectors contain a total of 3200 observations F FULL NT NF =F1 M COMPUTED =M1 G COMPUTED =G1 Q FULL 2 1 =Q1 N FULL 1 NT =N1 ! EFFECT OF COVARIATE, FEMALE K FULL 1 1 I IDEN 2 2 U UNIT 1 2 END MATRICES; SPECIFY K -1 MEANS (F*Q)' + K*N | (F*Q)'+ K*N ; COVARIANCE (I@F)&M + G ; OPTIONS RS END The following MX script lines were read for group 3 GROUP #3 DZ TWINS DATA NI=NINPUT RECTANGULAR FILE=EXAMPLE4.DAT Rectangular continuous data read initiated MAXRSZ= 1000 NOTE: Rectangular file contained 1000 records with data that contained a total of 11000 observations LABELS PAIRID SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 ZYGOS SELECT IF ZYGOS = 2 ; ! DZ'S ONLY FOR THIS GROUP NOTE: Select if yields 600 data vectors for analysis NOTE: Vectors contain a total of 6600 observations SELECT SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 ; DEFINITION SEX; NOTE: Selection yields 600 data vectors for analysis NOTE: Vectors contain a total of 5400 observations Note: Global variable previously defined. Updating SEX BEGIN MATRICES; NOTE: Definition yields 600 data vectors for analysis NOTE: Vectors contain a total of 4800 observations F FULL NT 2 =F1 D COMPUTED =S1 Q FULL 2 1 =Q1 G COMPUTED =G1 N FULL 1 NT =N1 ! EFFECT OF COVARIATE, FEMALE K FULL 1 1 H FULL 1 1 =H1 I IDEN 2 2 U UNIT 1 2 END MATRICES; SPECIFY K -1 MEANS (F*Q)' + K*N | (F*Q)'+ K*N ; COVARIANCE (I@F)&D + G ; !Option TH=-2 OPTION JIGGLE !Option it=5000 OPTIONS MULTIPLE ISSAT END Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... Mx starting optimization; number of parameters = 12 MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 1.2904E-01 -1.0142E-02 2 -1.0142E-02 8.9630E-04 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 3.6646E-02 -2.8222E-03 2 -2.8222E-03 2.1734E-04 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1607 -0.0131 2 -0.0131 0.0011 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 6 1 0.3954 -0.0311 0.1123 -0.0086 0.4924 -0.0403 2 -4.5071 0.3983 -1.2542 0.0966 -5.8430 0.5051 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3264 -0.0261 0.1657 -0.0130 2 -0.0261 0.0023 -0.0130 0.0011 3 0.1657 -0.0130 0.3264 -0.0261 4 -0.0130 0.0011 -0.0261 0.0023 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 -0.9431 1.0000 -0.9729 2 -0.9431 1.0000 -0.9729 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2637E-01 -2.6113E-02 1.0116E-01 -7.8933E-03 2 -2.6113E-02 2.2502E-03 -7.8933E-03 6.6549E-04 3 1.0116E-01 -7.8933E-03 3.2637E-01 -2.6113E-02 4 -7.8933E-03 6.6549E-04 -2.6113E-02 2.2502E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3592 2 -0.0282 0.0100 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1.9143E-01 2 -1.4743E-02 1.1813E-09 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4009 2 -0.0328 0.0078 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3264 -0.0261 0.1657 -0.0130 2 -0.0261 0.0023 -0.0130 0.0011 3 0.1657 -0.0130 0.3264 -0.0261 4 -0.0130 0.0011 -0.0261 0.0023 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5197 3.4924 3.4650 3.4377 3.5197 3.4924 WAVE23 WAVE24 Mean 3.4650 3.4377 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3296 WAVE12 0.3003 0.2797 WAVE13 0.2741 0.2525 0.2342 WAVE14 0.2480 0.2287 0.2093 0.1932 WAVE21 0.1657 0.1527 0.1398 0.1268 0.3296 WAVE22 0.1527 0.1409 0.1290 0.1172 0.3003 0.2797 WAVE23 0.1398 0.1290 0.1183 0.1075 0.2741 0.2525 0.2342 WAVE24 0.1268 0.1172 0.1075 0.0979 0.2480 0.2287 0.2093 0.1932 Function value of this group: -4394.2629 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2637E-01 -2.6113E-02 1.0116E-01 -7.8933E-03 2 -2.6113E-02 2.2502E-03 -7.8933E-03 6.6549E-04 3 1.0116E-01 -7.8933E-03 3.2637E-01 -2.6113E-02 4 -7.8933E-03 6.6549E-04 -2.6113E-02 2.2502E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 12 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11226.578 Degrees of freedom >>>>>>>>>>>>>>>> 7988 Akaike's Information Criterion >>>>-27202.578 Bayesian Information Criterion >>>>-33202.863 Sample size Adjusted BIC >>>>-20517.696 Deviance Information Criterion >>>>-25862.382 This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.47 Execution 0: 0: 0:13.18 TOTAL 0: 0: 0:13.65 Total number of warnings issued: 0 ______________________________________________________________________________ Multiple fit option in effect. The following MX script lines have been read: SAVE LINGROW.MXS ! FIT ORTHOGONAL GET LINGROW.MXS Note: 54233 binary records read DROP @0 X(1,2,1) Y(1,2,1) Z(1,2,1) ! NO COVARIANCE OF INTERCEPT AND SLOPE. END Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 0 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 0 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 0 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... Mx starting optimization; number of parameters = 9 MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 1.2688E-01 0.0000E+00 2 0.0000E+00 9.7880E-04 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 3.6413E-02 0.0000E+00 2 0.0000E+00 1.5037E-04 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 1.4407E-01 0.0000E+00 2 0.0000E+00 9.2275E-04 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 6 1 0.4128 0.0000 0.1185 0.0000 0.4687 0.0000 2 0.0000 0.4770 0.0000 0.0733 0.0000 0.4497 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0583 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3074 0.0000 0.1633 0.0000 2 0.0000 0.0021 0.0000 0.0011 3 0.1633 0.0000 0.3074 0.0000 4 0.0000 0.0011 0.0000 0.0021 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 0.0000 1.0000 0.0000 2 0.0000 1.0000 0.0000 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.0736E-01 0.0000E+00 9.9851E-02 0.0000E+00 2 0.0000E+00 2.0519E-03 0.0000E+00 6.3977E-04 3 9.9851E-02 0.0000E+00 3.0736E-01 0.0000E+00 4 0.0000E+00 6.3977E-04 0.0000E+00 2.0519E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3562 2 0.0000 0.0313 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.1908 2 0.0000 0.0123 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3796 2 0.0000 0.0304 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3074 0.0000 0.1633 0.0000 2 0.0000 0.0021 0.0000 0.0011 3 0.1633 0.0000 0.3074 0.0000 4 0.0000 0.0011 0.0000 0.0021 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5197 3.4923 3.4650 3.4377 3.5197 3.4923 WAVE23 WAVE24 Mean 3.4650 3.4377 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3108 WAVE12 0.3074 0.3128 WAVE13 0.3074 0.3115 0.3190 WAVE14 0.3074 0.3135 0.3197 0.3292 WAVE21 0.1633 0.1633 0.1633 0.1633 0.3108 WAVE22 0.1633 0.1644 0.1655 0.1667 0.3074 0.3128 WAVE23 0.1633 0.1655 0.1678 0.1701 0.3074 0.3115 0.3190 WAVE24 0.1633 0.1667 0.1701 0.1735 0.3074 0.3135 0.3197 0.3292 Function value of this group: -3344.3005 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.0736E-01 0.0000E+00 9.9851E-02 0.0000E+00 2 0.0000E+00 2.0519E-03 0.0000E+00 6.3977E-04 3 9.9851E-02 0.0000E+00 3.0736E-01 0.0000E+00 4 0.0000E+00 6.3977E-04 0.0000E+00 2.0519E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0034 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5197 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 9 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>> -8507.678 Degrees of freedom >>>>>>>>>>>>>>>> 7991 Akaike's Information Criterion >>>>-24489.678 Bayesian Information Criterion >>>>-31853.775 Sample size Adjusted BIC >>>>-19163.844 Deviance Information Criterion >>>>-24510.537 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 2718.900 Difference d.f. >>>>>>>>>>>>>>> 3 Probability >>>>>>>>>>>>>>>>>>>> 0.000 Akaike's Information Criterion > 2712.900 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.08 Execution 0: 0: 0: 6.31 TOTAL 0: 0: 0: 6.39 Total number of warnings issued: 0 ______________________________________________________________________________ !Significance of no heritability of intercept (Under ACE model) Multiple fit option in effect. The following MX script lines have been read: GET LINGROW.MXS Note: 54233 binary records read DROP @0 X(1,1,1) X(1,2,1) END How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9913D-04 Matrix not fully standardized Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0 2 0 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized Mx starting optimization; number of parameters = 10 How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3721D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1502D+01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2794D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3791D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1780D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4860D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1811D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3466D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3367D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3161D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2888D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7966D+01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1494D+01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2281D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2344D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7475D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2167D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1907D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1333D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2075D+02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3776D+01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5659D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6607D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4946D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2800D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2358D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1048D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1319D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2188D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2781D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6337D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1025D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1256D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9845D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1409D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7446D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6020D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1886D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2124D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7654D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5879D+01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7411D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6556D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4131D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2140D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3597D-01 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3603D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8135D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6455D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1608D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3566D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7617D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3629D-02 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1153D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.6412D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3147D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5191D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2558D-05 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.2038D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3272D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.3827D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4786D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.4767D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5110D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.5884D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7323D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.7324D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.8873D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9575D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9576D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9966D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9967D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1019D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.1057D-03 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9565D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9936D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9985D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9972D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9960D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9958D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.000000000000000E+00 Matrix is 0.0000D+00 0.0000D+00 0.0000D+00 0.9959D-04 Matrix not fully standardized MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.0000E+00 0.0000E+00 2 0.0000E+00 9.9592E-05 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 1.2924E-01 -1.0092E-02 2 -1.0092E-02 7.8806E-04 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1981 -0.0161 2 -0.0161 0.0014 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 6 1 0.0000 0.0000 0.3949 -0.0308 0.6051 -0.0492 2 0.0000 0.0441 -4.4718 0.3492 -7.1334 0.6067 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 3.2731E-01 -2.6191E-02 1.2924E-01 -1.0092E-02 2 -2.6191E-02 2.2568E-03 -1.0092E-02 8.8765E-04 3 1.2924E-01 -1.0092E-02 3.2731E-01 -2.6191E-02 4 -1.0092E-02 8.8765E-04 -2.6191E-02 2.2568E-03 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 0.0000 0.0000 1.0000 -0.9776 2 0.0000 1.0000 -0.9776 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5200 2 -0.0274 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2731E-01 -2.6191E-02 1.2924E-01 -1.0092E-02 2 -2.6191E-02 2.2568E-03 -1.0092E-02 8.3786E-04 3 1.2924E-01 -1.0092E-02 3.2731E-01 -2.6191E-02 4 -1.0092E-02 8.3786E-04 -2.6191E-02 2.2568E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0100 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 3.5950E-01 2 -2.8072E-02 3.1587E-08 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4451 2 -0.0362 -0.0078 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 3.2731E-01 -2.6191E-02 1.2924E-01 -1.0092E-02 2 -2.6191E-02 2.2568E-03 -1.0092E-02 8.8765E-04 3 1.2924E-01 -1.0092E-02 3.2731E-01 -2.6191E-02 4 -1.0092E-02 8.8765E-04 -2.6191E-02 2.2568E-03 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5200 2 -0.0274 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5200 3.4927 3.4653 3.4379 3.5200 3.4927 WAVE23 WAVE24 Mean 3.4653 3.4379 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3306 WAVE12 0.3011 0.2805 WAVE13 0.2749 0.2533 0.2348 WAVE14 0.2487 0.2293 0.2099 0.1938 WAVE21 0.1292 0.1191 0.1091 0.0990 0.3306 WAVE22 0.1191 0.1099 0.1007 0.0915 0.3011 0.2805 WAVE23 0.1091 0.1007 0.0924 0.0841 0.2749 0.2533 0.2348 WAVE24 0.0990 0.0915 0.0841 0.0767 0.2487 0.2293 0.2099 0.1938 Function value of this group: -4384.4915 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2731E-01 -2.6191E-02 1.2924E-01 -1.0092E-02 2 -2.6191E-02 2.2568E-03 -1.0092E-02 8.3786E-04 3 1.2924E-01 -1.0092E-02 3.2731E-01 -2.6191E-02 4 -1.0092E-02 8.3786E-04 -2.6191E-02 2.2568E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5200 2 -0.0274 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 10 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11210.507 Degrees of freedom >>>>>>>>>>>>>>>> 7990 Akaike's Information Criterion >>>>-27190.507 Bayesian Information Criterion >>>>-33201.736 Sample size Adjusted BIC >>>>-20513.393 Deviance Information Criterion >>>>-25859.417 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 16.070 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.000 Akaike's Information Criterion > 12.070 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.03 Execution 0: 0: 0: 7.53 TOTAL 0: 0: 0: 7.56 Total number of warnings issued: 0 ______________________________________________________________________________ ! Significance of no heritability of slope (Under ACE model) Multiple fit option in effect. The following MX script lines have been read: GET LINGROW.MXS Note: 54233 binary records read DROP @0 X(1,2,1) X(1,2,2) END How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1290361711778582 Matrix is 0.1290D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 0 0 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 5 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized Mx starting optimization; number of parameters = 10 How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981458321012541 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981441303528538 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981475338569621 Matrix is 0.1981D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2074556968567783 Matrix is 0.2075D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2023864053347899 Matrix is 0.2024D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1999794447659046 Matrix is 0.2000D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1988833243351479 Matrix is 0.1989D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984244706697444 Matrix is 0.1984D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982788355064808 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981668388558170 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981738030020806 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1981873251709812 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982047837091318 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982049131740774 Matrix is 0.1982D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2209363646330186 Matrix is 0.2209D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2080601574416609 Matrix is 0.2081D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2022373597741516 Matrix is 0.2022D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1997633179498750 Matrix is 0.1998D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984967884485826 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1982850363424193 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983025553491134 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1983026848558246 Matrix is 0.1983D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1120265248957875 Matrix is 0.1120D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1569425305682446 Matrix is 0.1569D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1803124096524560 Matrix is 0.1803D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1909401198749628 Matrix is 0.1909D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975600317446886 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1975601609340756 Matrix is 0.1976D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.3430284596426892 Matrix is 0.3430D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2424477024356438 Matrix is 0.2424D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2018423113865771 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984783337018098 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1984784632835954 Matrix is 0.1985D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.4190007403511395 Matrix is 0.4190D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2138339479112985 Matrix is 0.2138D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017635286369737 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2017636596186472 Matrix is 0.2018D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.4048314293963722 Matrix is 0.4048D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2533866290578174 Matrix is 0.2534D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2133914698223852 Matrix is 0.2134D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047028542849591 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2047029865140563 Matrix is 0.2047D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.549416839617603E-03 Matrix is 0.5549D-02 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1211815274780540 Matrix is 0.1212D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1831355249872615 Matrix is 0.1831D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004234862038814 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.2004236166152676 Matrix is 0.2004D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.076130693343794E-02 Matrix is 0.6076D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894742702847806E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 6.894749373741414E-02 Matrix is 0.6895D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.4755970350257191 Matrix is 0.4756D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905060525016013 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1905061786603967 Matrix is 0.1905D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 7.428255879650575E-03 Matrix is 0.7428D-02 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495924166027223 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1495925245287966 Matrix is 0.1496D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 9.862042904453612E-06 Matrix is 0.9862D-05 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1163878600613744 Matrix is 0.1164D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448107738716 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 0.1068448980453038 Matrix is 0.1068D+00 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 3.548134880699745E-03 Matrix is 0.3548D-02 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440842597485241E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 5.440848385811432E-02 Matrix is 0.5441D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829373045526219E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.829376135188410E-02 Matrix is 0.1829D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020639458942778E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.020642725828512E-02 Matrix is 0.2021D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167718546651587E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 2.167721945402099E-02 Matrix is 0.2168D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860600816413984E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.860603935490249E-02 Matrix is 0.1861D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.489087376448684E-02 Matrix is 0.1489D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718275083162510E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.718278066535281E-02 Matrix is 0.1718D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517406732506274E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.517409516500074E-02 Matrix is 0.1517D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534980070479317E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.534982872320775E-02 Matrix is 0.1535D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553849682506175E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553852503420885E-02 Matrix is 0.1554D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538900889471694E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.538903695283979E-02 Matrix is 0.1539D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539668216634323E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.539671023223248E-02 Matrix is 0.1540D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553316339497132E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.553319159874021E-02 Matrix is 0.1553D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565981662457597E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.565984495586267E-02 Matrix is 0.1566D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570708687247798E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570711525125181E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570896385549804E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570899223615629E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570979107783401E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.570981945932273E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571146597790501E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571149436107516E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571209696574454E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571212534954810E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571198977357985E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571201815727580E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571188555741596E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized How am I supposed to take the square root of 0.000000000000000E+00 ? Diagonal elements are: 0.000000000000000E+00 1.571191394100730E-02 Matrix is 0.1571D-01 0.0000D+00 0.0000D+00 0.0000D+00 Matrix not fully standardized MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.0157 0.0000 2 0.0000 0.0000 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 1.1832E-01 -1.0085E-02 2 -1.0085E-02 8.5951E-04 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1926 -0.0161 2 -0.0161 0.0014 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 6 1 0.0481 0.0000 0.3622 -0.0309 0.5897 -0.0492 2 0.0000 0.0000 -4.4701 0.3810 -7.1203 0.6190 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 3.2663E-01 -2.6148E-02 1.3403E-01 -1.0085E-02 2 -2.6148E-02 2.2560E-03 -1.0085E-02 8.5951E-04 3 1.3403E-01 -1.0085E-02 3.2663E-01 -2.6148E-02 4 -1.0085E-02 8.5951E-04 -2.6148E-02 2.2560E-03 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 0.0000 1.0000 -0.9795 2 0.0000 0.0000 -0.9795 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5201 2 -0.0274 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2663E-01 -2.6148E-02 1.2618E-01 -1.0085E-02 2 -2.6148E-02 2.2560E-03 -1.0085E-02 8.5951E-04 3 1.2618E-01 -1.0085E-02 3.2663E-01 -2.6148E-02 4 -1.0085E-02 8.5951E-04 -2.6148E-02 2.2560E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.1253 2 0.0000 0.0000 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 3.4398E-01 2 -2.9317E-02 -7.0869E-08 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4389 2 -0.0366 0.0075 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 3.2663E-01 -2.6148E-02 1.3403E-01 -1.0085E-02 2 -2.6148E-02 2.2560E-03 -1.0085E-02 8.5951E-04 3 1.3403E-01 -1.0085E-02 3.2663E-01 -2.6148E-02 4 -1.0085E-02 8.5951E-04 -2.6148E-02 2.2560E-03 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5201 2 -0.0274 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5201 3.4927 3.4653 3.4379 3.5201 3.4927 WAVE23 WAVE24 Mean 3.4653 3.4379 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3299 WAVE12 0.3005 0.2799 WAVE13 0.2743 0.2527 0.2343 WAVE14 0.2482 0.2288 0.2094 0.1933 WAVE21 0.1340 0.1239 0.1139 0.1038 0.3299 WAVE22 0.1239 0.1147 0.1055 0.0963 0.3005 0.2799 WAVE23 0.1139 0.1055 0.0971 0.0888 0.2743 0.2527 0.2343 WAVE24 0.1038 0.0963 0.0888 0.0813 0.2482 0.2288 0.2094 0.1933 Function value of this group: -4386.9396 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2663E-01 -2.6148E-02 1.2618E-01 -1.0085E-02 2 -2.6148E-02 2.2560E-03 -1.0085E-02 8.5951E-04 3 1.2618E-01 -1.0085E-02 3.2663E-01 -2.6148E-02 4 -1.0085E-02 8.5951E-04 -2.6148E-02 2.2560E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5201 2 -0.0274 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 10 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11213.852 Degrees of freedom >>>>>>>>>>>>>>>> 7990 Akaike's Information Criterion >>>>-27193.852 Bayesian Information Criterion >>>>-33203.409 Sample size Adjusted BIC >>>>-20515.065 Deviance Information Criterion >>>>-25861.090 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 12.725 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.002 Akaike's Information Criterion > 8.725 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.04 Execution 0: 0: 0: 6.78 TOTAL 0: 0: 0: 6.82 Total number of warnings issued: 0 ______________________________________________________________________________ ! Significance of no common environmental effect of intercept Multiple fit option in effect. The following MX script lines have been read: GET LINGROW.MXS Note: 54233 binary records read DROP @0 Y(1,1,1) Y(1,2,1) END Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0 2 0 6 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... Mx starting optimization; number of parameters = 10 MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.1700 -0.0133 2 -0.0133 0.0011 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.0000E+00 0.0000E+00 2 0.0000E+00 1.1690E-16 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1551 -0.0127 2 -0.0127 0.0011 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 1 5.2290E-01 -4.0906E-02 0.0000E+00 0.0000E+00 4.7710E-01 2 -5.9295E+00 5.0809E-01 0.0000E+00 5.2119E-14 -5.6701E+00 6 1 -3.9116E-02 2 4.9191E-01 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 -0.9555 1.0000 -0.9721 2 -0.9555 1.0000 -0.9721 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4123 2 -0.0323 -0.0100 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000E+00 2 0.0000E+00 1.0812E-08 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3939 2 -0.0323 0.0078 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5196 3.4922 3.4649 3.4376 3.5196 3.4922 WAVE23 WAVE24 Mean 3.4649 3.4376 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3284 WAVE12 0.2991 0.2786 WAVE13 0.2731 0.2516 0.2333 WAVE14 0.2471 0.2278 0.2085 0.1925 WAVE21 0.1700 0.1567 0.1434 0.1301 0.3284 WAVE22 0.1567 0.1445 0.1324 0.1202 0.2991 0.2786 WAVE23 0.1434 0.1324 0.1214 0.1103 0.2731 0.2516 0.2333 WAVE24 0.1301 0.1202 0.1103 0.1005 0.2471 0.2278 0.2085 0.1925 Function value of this group: -4393.8449 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 10 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11224.629 Degrees of freedom >>>>>>>>>>>>>>>> 7990 Akaike's Information Criterion >>>>-27204.629 Bayesian Information Criterion >>>>-33208.797 Sample size Adjusted BIC >>>>-20520.454 Deviance Information Criterion >>>>-25866.478 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 1.949 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.377 Akaike's Information Criterion > -2.051 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.03 Execution 0: 0: 0: 8.58 TOTAL 0: 0: 0: 8.61 Total number of warnings issued: 0 ______________________________________________________________________________ !@ready; ! Significance of no common environmental effect of slope Multiple fit option in effect. The following MX script lines have been read: GET LINGROW.MXS Note: 54233 binary records read DROP @0 Y(1,2,1) Y(1,2,2) END Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 4 2 0 0 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... Mx starting optimization; number of parameters = 10 MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.1700 -0.0133 2 -0.0133 0.0011 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 8.0612E-13 0.0000E+00 2 0.0000E+00 0.0000E+00 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1551 -0.0127 2 -0.0127 0.0011 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 1 5.2290E-01 -4.0906E-02 2.4794E-12 0.0000E+00 4.7710E-01 2 -5.9295E+00 5.0809E-01 0.0000E+00 0.0000E+00 -5.6701E+00 6 1 -3.9116E-02 2 4.9191E-01 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 -0.9555 1.0000 -0.9721 2 -0.9555 1.0000 -0.9721 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4123 2 -0.0323 0.0100 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 8.9784E-07 2 0.0000E+00 0.0000E+00 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3939 2 -0.0323 0.0078 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5196 3.4922 3.4649 3.4376 3.5196 3.4922 WAVE23 WAVE24 Mean 3.4649 3.4376 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3284 WAVE12 0.2991 0.2786 WAVE13 0.2731 0.2516 0.2333 WAVE14 0.2471 0.2278 0.2085 0.1925 WAVE21 0.1700 0.1567 0.1434 0.1301 0.3284 WAVE22 0.1567 0.1445 0.1324 0.1202 0.2991 0.2786 WAVE23 0.1434 0.1324 0.1214 0.1103 0.2731 0.2516 0.2333 WAVE24 0.1301 0.1202 0.1103 0.1005 0.2471 0.2278 0.2085 0.1925 Function value of this group: -4393.8449 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 10 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11224.629 Degrees of freedom >>>>>>>>>>>>>>>> 7990 Akaike's Information Criterion >>>>-27204.629 Bayesian Information Criterion >>>>-33208.797 Sample size Adjusted BIC >>>>-20520.454 Deviance Information Criterion >>>>-25866.478 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 1.949 Difference d.f. >>>>>>>>>>>>>>> 2 Probability >>>>>>>>>>>>>>>>>>>> 0.377 Akaike's Information Criterion > -2.051 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.04 Execution 0: 0: 0: 7.69 TOTAL 0: 0: 0: 7.73 Total number of warnings issued: 0 ______________________________________________________________________________ ! FIT AE MODEL Multiple fit option in effect. The following MX script lines have been read: GET LINGROW.MXS Note: 54233 binary records read DROP @0 Y(1,1,1) Y(1,2,1) Y(1,2,2) END Summary of VL file data for group 2 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 400.0000 400.0000 400.0000 400.0000 400.0000 400.0000 Mean 1.5000 3.5410 3.5206 3.4841 3.4536 3.5085 Variance 0.2500 0.3351 0.2892 0.2416 0.1916 0.3544 Minimum 1.0000 1.9443 1.9553 2.0887 2.2714 1.7027 Maximum 2.0000 4.9934 4.9001 4.6441 4.5371 5.0382 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 400.0000 400.0000 400.0000 Mean 3.4818 3.4583 3.4287 Variance 0.3084 0.2532 0.2136 Minimum 1.7682 1.8873 2.0761 Maximum 4.8847 4.7031 4.6320 Summary of VL file data for group 3 SEX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 Code -1.0000 1.0000 2.0000 3.0000 4.0000 5.0000 Number 600.0000 600.0000 600.0000 600.0000 600.0000 600.0000 Mean 1.5000 3.4946 3.4713 3.4438 3.4187 3.5347 Variance 0.2500 0.3205 0.2704 0.2278 0.1886 0.3174 Minimum 1.0000 1.7020 1.7375 1.8454 2.1050 1.5106 Maximum 2.0000 4.9269 4.7989 4.6543 4.5757 5.8465 WAVE22 WAVE23 WAVE24 Code 6.0000 7.0000 8.0000 Number 600.0000 600.0000 600.0000 Mean 3.5081 3.4815 3.4494 Variance 0.2685 0.2253 0.1849 Minimum 1.5503 1.7765 1.8446 Maximum 5.5083 5.2476 5.0668 PARAMETER SPECIFICATIONS GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX D This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX E This is a computed FULL matrix of order 2 by 2 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 It has no free parameters specified MATRIX L This is a FULL matrix of order 1 by 1 1 1 10 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX P This is a computed FULL matrix of order 2 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX S This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 1 2 2 3 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 It has no free parameters specified MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 7 2 8 9 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX M This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 It has no free parameters specified MATRIX F This is a FULL matrix of order 4 by 2 It has no free parameters specified MATRIX G This is a computed FULL matrix of order 8 by 8 It has no free parameters specified MATRIX H This is a FULL matrix of order 1 by 1 It has no free parameters specified MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 -1 MATRIX N This is a FULL matrix of order 1 by 4 It has no free parameters specified MATRIX Q This is a FULL matrix of order 2 by 1 1 1 11 2 12 MATRIX U This is a UNIT matrix of order 1 by 2 Jiggling parameter estimates... Mx starting optimization; number of parameters = 9 MX PARAMETER ESTIMATES GROUP NUMBER: 1 GROUP #1 Initialization MATRIX A This is a computed FULL matrix of order 2 by 2 [=X*X'] 1 2 1 0.1700 -0.0133 2 -0.0133 0.0011 MATRIX B This is an IDENTITY matrix of order 4 by 4 MATRIX C This is a computed FULL matrix of order 2 by 2 [=Y*Y'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX D This is a computed FULL matrix of order 2 by 2 [=V*V'] 1 2 1 0.0000 0.0000 2 0.0000 0.0000 MATRIX E This is a computed FULL matrix of order 2 by 2 [=Z*Z'] 1 2 1 0.1551 -0.0127 2 -0.0127 0.0011 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is a FULL matrix of order 1 by 1 1 1 0.2500 MATRIX J This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a computed FULL matrix of order 2 by 6 [=((J.(A+D+C+E))~*A)|((J.(A+D+C+E))~*C)|((J.(A+D+C+E))~*E)] 1 2 3 4 5 6 1 0.5229 -0.0409 0.0000 0.0000 0.4771 -0.0391 2 -5.9295 0.5081 0.0000 0.0000 -5.6701 0.4919 MATRIX L This is a FULL matrix of order 1 by 1 1 1 0.0572 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX P This is a computed FULL matrix of order 2 by 4 [=\STND(A)|\STND(E)] 1 2 3 4 1 1.0000 -0.9555 1.0000 -0.9721 2 -0.9555 1.0000 -0.9721 1.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX S This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX V This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX W This is a NULL matrix of order 4 by 4 MATRIX X This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.4123 2 -0.0323 0.0100 MATRIX Y This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.0000 2 0.0000 0.0000 MATRIX Z This is a LOWER TRIANGULAR matrix of order 2 by 2 1 2 1 0.3939 2 -0.0323 -0.0078 GROUP NUMBER: 2 GROUP #2 Mz twins MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX M This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|A+D+C_A+D+C|A+D+C+E] 1 2 3 4 1 0.3251 -0.0260 0.1700 -0.0133 2 -0.0260 0.0022 -0.0133 0.0011 3 0.1700 -0.0133 0.3251 -0.0260 4 -0.0133 0.0011 -0.0260 0.0022 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Vector of OBSERVED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5410 3.5206 3.4841 3.4536 3.5085 3.4818 WAVE23 WAVE24 Mean 3.4583 3.4287 Vector of EXPECTED means WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 Mean 3.5196 3.4922 3.4649 3.4376 3.5196 3.4922 WAVE23 WAVE24 Mean 3.4649 3.4376 (OBSERVED MATRIX is nonexistent for raw data) EXPECTED COVARIANCE MATRIX WAVE11 WAVE12 WAVE13 WAVE14 WAVE21 WAVE22 WAVE23 WAVE24 WAVE11 0.3284 WAVE12 0.2991 0.2786 WAVE13 0.2731 0.2516 0.2333 WAVE14 0.2471 0.2278 0.2085 0.1925 WAVE21 0.1700 0.1567 0.1434 0.1301 0.3284 WAVE22 0.1567 0.1445 0.1324 0.1202 0.2991 0.2786 WAVE23 0.1434 0.1324 0.1214 0.1103 0.2731 0.2516 0.2333 WAVE24 0.1301 0.1202 0.1103 0.1005 0.2471 0.2278 0.2085 0.1925 Function value of this group: -4393.8449 Where the fit function is -2 * Log-likelihood of raw data GROUP NUMBER: 3 GROUP #3 Dz twins MATRIX D This is a computed FULL matrix of order 4 by 4 [=A+D+C+E|H@A+I@D+C_H@A+I@D+C|A+D+C+E] 1 2 3 4 1 3.2513E-01 -2.6017E-02 8.5004E-02 -6.6497E-03 2 -2.6017E-02 2.2429E-03 -6.6497E-03 5.6980E-04 3 8.5004E-02 -6.6497E-03 3.2513E-01 -2.6017E-02 4 -6.6497E-03 5.6980E-04 -2.6017E-02 2.2429E-03 MATRIX F This is a FULL matrix of order 4 by 2 1 2 1 1.0000 0.0000 2 1.0000 1.0000 3 1.0000 2.0000 4 1.0000 3.0000 MATRIX G This is a computed FULL matrix of order 8 by 8 [=(L*L')@B|W_W|(L*L')@B] 1 2 3 4 5 6 7 8 1 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 2 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 3 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 0.0000 4 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 0.0000 5 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 0.0000 6 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 0.0000 7 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 0.0000 8 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0033 MATRIX H This is a FULL matrix of order 1 by 1 1 1 0.5000 MATRIX I This is an IDENTITY matrix of order 2 by 2 MATRIX K This is a FULL matrix of order 1 by 1 1 1 2.0000 MATRIX N This is a FULL matrix of order 1 by 4 1 2 3 4 1 0.0000 0.0000 0.0000 0.0000 MATRIX Q This is a FULL matrix of order 2 by 1 1 1 3.5196 2 -0.0273 MATRIX U This is a UNIT matrix of order 1 by 2 Your model has 9 estimated parameters and 8000 Observed statistics -2 times log-likelihood of data >>>-11224.629 Degrees of freedom >>>>>>>>>>>>>>>> 7991 Akaike's Information Criterion >>>>-27206.629 Bayesian Information Criterion >>>>-33212.251 Sample size Adjusted BIC >>>>-20522.320 Deviance Information Criterion >>>>-25869.013 Saturated model fit* >>>>>>>>>>>-11226.578 Saturated model df* >>>>>>>>>>> 7988 Difference Chi-squared >>>>>>>> 1.949 Difference d.f. >>>>>>>>>>>>>>> 3 Probability >>>>>>>>>>>>>>>>>>>> 0.583 Akaike's Information Criterion > -4.051 * Saturated model statistic computed earlier in this job This problem used 0.5% of my workspace Task Time elapsed (DD:HH:MM:SS) Reading script & data 0: 0: 0: 0.03 Execution 0: 0: 0: 5.74 TOTAL 0: 0: 0: 5.77 Total number of warnings issued: 0 ______________________________________________________________________________