Types: N/A
Examples: N/A
Constructions: N/A
Generalizations: N/A

Properties: N/A
Sufficiencies: N/A
Questions: N/A

Column Partition of a Matrix

Consider a matrix ARm×n. The column partition of A is a description of the matrix in terms of column vectors that construct the matrix. Let the set {A(:,1),A(:,2),,A(:,n)}Rm×1 be a collection of the n separate m×1 column vectors. These vectors are organized side by side to form the rectangular array:

A=[A(:,1)A(:,2)A(:,n)]=[a11a12a1na21a22a2nam1am2amn]m×n

Below is an example of when to use column partitions.

Example

Let bRm be a linear combination of vectors {ak}k=1n. Write out this linear combination.

We can write our linear combination as follows.

b=x1a1+x2a2+x3a3++xnan=x1[a11a21am1]+x2[a12a22am2]+x3[a13a23am3]=x1A(:,1)+x2A(:,2)+x3A(:,3)++xnA(:,n)=[A(:,1)A(:,2)A(:,3)A(:,n)]m×n[x1x2x3xn]=Am×nxn×1

This is the 1 The Matrix-Vector Multiplication Problem