Go to the first, previous, next, last section, table of contents.


matrix_submatrix

matrix_submatrix(M,Ind)
: It returns the submatrix of M defined by the index set Ind.

Example:

 matrix_submatrix([[0,1],[2,3],[4,5]],[1,2]);


Go to the first, previous, next, last section, table of contents.