Inserting Rows and ColumnsIf you want to insert a row, you can use Insert. Inserting a row. In[1]:=  |
Out[2]//MatrixForm=
|
This inserts a row before row 3. In[3]:=  |
Out[3]//MatrixForm=
|
If you want to insert a column, you must transpose the matrix, insert the column as a row, and then transpose the matrix back. This inserts a column before column 5. In[4]:=  |
Out[4]//MatrixForm=
|
|