Metric
- If the matrix has m rows and n columns, we say the size of the matrix is m by n,writen m * n
- We use to denote the set that contains all matrices whose size is m * n
Ps:先 rows 再 columns
Index of component
the scalas in the i-th row and j-th column is called (i,j)-entry in the matrix
also:
is a vector
- Two matrices with the same size can add or substract
- Matrix can multiply by a scalar
Properties
A、B、C are m*n matrices,and s and t are scalars
- A + B = B + A
- (A + B) + C = A + (B + C)
- (st)A = s(tA)
- s(A + B) = sA + sB
- (s + t)A = sA + tA