Dear all,

my university is using the Stata version with max matsize = 800. I am working with a dataset which has 1300 observations so I splitted my matrices in 800 and 500 observations. So I have got a 800x5 (matrix a) and a 500x5 (matrix b) both containing the same 5 coefficients.

As I am not able to do:
Code:
matrix total = matrix a \ matrix b
I am able to put the coefficients in several variables:
Code:
svmat matrix a
svmat matrix b
So I receive 10 columns (5 of each matrix).

And now my problem: Is there a command in stata to put the 5 Variables of Matrix B under the 5 Variables of Matrix A?

Best regards,

Ikn