Definition

Partitioned matrix is a matrix obtained from dividing a bigger matrix by inserting horizontal and vertical rules between selected rows and columns.

Submatrix is a matrix obtained by deleting its rows or columns. A matrix is also considered to be a submatrix of itself.

Remark

The difference is:

  • Submatrix subtracts elements. Usually for analysis ( determinants, ranks)
  • Partitioning divides a matrix into multiple submatrices. Usually for computations (block operations)

Example

For example, the following are three possible partitions of a general matrix :

Partition of into four submatrices and :

Partition of into row vectors and :

A=\left[ \begin{array} a_{11} & a_{12} & a_{13} & a_{14} \\ \hline a_{22} & a_{22} & a_{23} & a_{24} \\ \hline a_{11} & a_{12} & a_{12} & a_{14} \\ \end{array} \right] =\begin{bmatrix} \mathbf{r}_{1} \\ \mathbf{r}_{2} \\ \mathbf{r}_{3} \\ \end{bmatrix}

Partition of into column vectors and :