Question: Use the command 'matrix' to define a matrix, and how to call the first row elements of the matrix?

Use the command 'matrix' to define a matrix, and how to call the first row elements of the matrix?

This method

a:=matrix([[1,2,3],[4,5,6],[7,8,9]]);

a[1..2,-2..-1], does not work? Why?

Please Wait...