Types: 8.12 Column Operator, 8.13 Column Partition of a Matrix
Examples: N/A
Constructions: N/A
Generalizations: N/A

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

Colon Notation

A useful way to refer to individual columns/rows of a matrix is to use colon notation.

  • If ARm×n, then A(:,k)Rm×1 stands for the kth column of A
A(:,k)=[a1ka2kamk]

for k{1,2,,n}.

  • Likewise, A(i,:)R1×n stands for the ith row of A
A(i,:)=[ai1ai2ain]

for i{1,2,,m}.

Remark. This notation originated from MATLAB. This notation will be extremely useful when working with vectors.