MAT350 5.8 MATLAB: Change of Bases
Create the augmented matrix D, whose columns are the ordered basis of C followed by the image of the ordered basis of B.
D = [1 2 3 7; 4 3 -1 -1]
Row reduce the augmented matrix to get [I | T_BtoC]. Use “format rat” to view values as rational numbers, if desired.
temp = rref(D)
format rat
T_BtoC = temp(:,3:4)
For this actvity, find the matrix represenatation [T]C B for the linear transformation defined by R2 -> R3
x1 x1 + x2
T ( [ x2 ] ) = [ -2×3 ]
x3
with respect
Reviews
There are no reviews yet.