Example, Given the folowing 2D matrix \(A\) delete say the second column
\(\begin {pmatrix} 1 & 2 & 3\\ 4 & 5 & 6\\ 7 & 8 & 9 \end {pmatrix}\)
A:=Matrix([[1,2,3],[4,5,6],[7,8,9]]); A:=LinearAlgebra:-DeleteColumn(A,2);
|
\[ \left [ \begin {array}{cc} 1&3\\ \noalign {\medskip }4&6 \\ \noalign {\medskip }7&9\end {array} \right ] \] |