File: Autoregressive_MatrixRaw.mx

package info (click to toggle)
r-cran-openmx 2.21.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,412 kB
  • sloc: cpp: 36,577; ansic: 13,811; fortran: 2,001; sh: 1,440; python: 350; perl: 21; makefile: 5
file content (45 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#NGroups 1 
#define latent 0
#define meas 5
#define m 5
Title RAM Autoregressive Test
Data NObservations=100 NInput=meas 
Rectangular File=myAutoregressiveData.txt


! Calculation
 Begin Matrices; 
  A Full m m        ! RAM specification matrices
  S Symm m m        ! 
  F Full meas m     ! 
  I Iden m m        ! Identity Matrix
  M Full 1 m        ! Means matrix
 End Matrices; 

 Specify A
  0 0 0 0 0
  1 0 0 0 0
  0 1 0 0 0
  0 0 1 0 0
  0 0 0 1 0
 Specify S
  2
  0 3
  0 0 4
  0 0 0 5
  0 0 0 0 6
 Matrix F
  1 0 0 0 0
  0 1 0 0 0
  0 0 1 0 0
  0 0 0 1 0
  0 0 0 0 1
 Specify M
    7 8 9 10 11
    
 Start 1.0 All

 Covariance F & ((I-A)~ & S) ;  ! RAM formula
 Means (I-A)~ * M';             ! Means
 Options Rsiduals
End