-
Notifications
You must be signed in to change notification settings - Fork 0
Matrix Computations: Basic Operations and Notation
Cem Bassoy edited this page Oct 16, 2018
·
1 revision
- Golub, Gene H., and Charles F. Van Loan. Matrix computations. Vol. 3. JHU Press, 2012.
- Hogben, Leslie. Handbook of linear algebra. Chapman and Hall/CRC, 2013.
- A (column) vector is an element of a finite vector space K^n with x = (x_i) and x_i \in K.
- Scalar Multiplication: K x K^n -> K^n <=> alpha * x = y
- Addition: K^n x K^n -> K^n <=> x + y = z
- Inner Product: K^n x K^n -> K <=> x^T * y = alpha
- Pointwise Multiplication and Division: K^n x K^n -> K^n <=> x.*y = z and x./y = z
- A matrix is an element of a finite vector space K^(m,n) with A = (a_ij) and a_ij \in K.
- Transposition: K^(m,n) -> K^(n,m) <=> A^T = C
- Addition (Subtraction): K^(m,n) x K^(m,n) -> K^(m,n) <=> A+B = C
- Scalar Multiplication: K x K^(m,n) -> K^(m,n) <=> alpha * A = C
- Matrix-Matrix Multiplication: K^(m,k) x K^(k,n) -> K^(m,n) <=> A*B = C
- Pointwise Multiplication and Division : K^(m,n) x K^(m,n) -> K^(m,n) <=> A.*B = C and A./B = C