Matrix of axes is a rotation matrix
Matrix with the axes of orthonormal coordinates is a rotation matrix. This matrix can convert from a certain coordinates to another certain coordinates.
For example, let's transform a point in x,y,z axes 3D orthonormal space to a point in a,b,c axes 3D orthonormal space. Through this conversion, we assume that the x axis becomes a axis, y axis becomes b axis, and z axis becomes c axis.
This transform matrix is expressed as follows.
Check.
Muliplying this matrix to x becomes a.
Muliplying this matrix to y becomes b.
Muliplying this matrix to z becomes c.
This transform matrix converts x,y,z space to a,b,c space.
Back