Introduction
- Row and Column vectors are special types of matrices which have only one column or row.
Example
Notation
- A column vector is represented by a bold lowercase letter, e.g. a
- A row vector is a transposed column vector. It is represented by a bold lowercase letter with a prime, e.g. a'
code (Python)
In python, both row and column vectors are represented as arrays.a = [3, 6, 2]
print(a)