From the course: Machine Learning Foundations: Linear Algebra

Unlock the full course today

Join today to access over 23,200 courses taught by industry experts.

Matrices changing basis

Matrices changing basis

- [Instructor] Sometimes, we want to express vectors in a different basis. It is useful in many types of matrix computations. A change of basis matrix is a matrix that translates vector representations from one basis, such as the standard coordinate system, to another basis. It allows us to perform transforms in the case when the new basis vectors are not orthogonal to each other. Let's see what it means in a simple example. Our coordinate system consists of the basis vectors e1 that is equal to 1,0 and e2 that is equal to 0,1. Imagine we define an alternative vector space, with basis vectors f1 that is equal to 1,3 and f2 that is equal to 2,1, and we have a vector a, 1,1, that is represented in coordinates of that vector space. When we construct the matrix of the new basis vectors f1 and f2 and multiply it with our vector 1,1, we get the vector 3,4 as a result. We will call a matrix constructed of new basis vectors…

Contents