Indexing Matrix Column

If m is of type matrix[,], then m[1] would give the first row of the matrix. Is there a way to extract any given column by indexing? Like in NumPy, it would be m[ : , col_num]

m[,col]