Dear all,

Is there a way to get access to a column of matrix and display it? I see that there is a way to display a specific element by using the following code:

Code:
    sysuse auto, clear
    qui: regress mpg trunk foreign turn
    matrix mytable= r(table)
    matrix list mytable

    di table1[1,1]
But I haven't figured out how to display a column (and hopefully a row).