Hi,

I need to generate an array in stata, but information I have read only seems to talk about arrays in mata.

Specifically the code i need to generate is:

Code:
gen double Iethrisk[10] = {
0,
0,
0.2804031433299542500000000,
0.5629899414207539800000000,
0.2959000085111651600000000,
0.0727853798779825450000000,
-0.1707213550885731700000000,
-0.3937104331487497100000000,
-0.3263249528353027200000000,
-0.1712705688324178400000000
}
...

Can this be made sense of in stata?