in the matrix multiplication AB, are these two statements correct?
- we transform matrix B by matrix A
- we project matrix A to matrix B
in the matrix multiplication AB, are these two statements correct?
Dear @flyunicorn,
Correct — In AB, matrix A applies a transformation to B (specifically, to B’s columns).
Incorrect — Matrix multiplication does not imply projection. Projection has a specific meaning unrelated to standard AB multiplication.
–
Keep Learning AI with DeepLearning.AI - Girijesh
But in the PCA video, it seems a matrix one the left is projected to the matrix on the right.
Yes, in PCA, the matrix on the left (original data) is projected onto the matrix on the right (principal components).
–
Keep Learning AI with DeepLearning.AI - Girijesh
In effect, when you take the dot product of your data matrix and the eigenvector matrix - you are projecting the matrix on the principle components.
When you get to the coding exercise - this is a dot product of the dataset and the matrix composed of the eigenvectors (the principle components)