How to find a standard matrix for a transformation?
Show older comments
How could you find a standard matrix for a transformation T : R2 → R3 (a linear transformation) for which T([v1,v2]) = [v1,v2,v3] and T([v3,v4-10) = [v5,v6-10,v7] for a given v1,...,v7? I have been thinking about using a function but do not think this is the most efficient way to solve this question. Could anyone help me out here? Thanks in advance. Walter
1 Comment
Jan
on 4 Oct 2017
Using a function or not is not the question here. It does not matter if you calculate this in a function or directly in the code.
Accepted Answer
More Answers (1)
Matt J
on 4 Oct 2017
T=[v1,v2,v3;v5,v6-10,v7].'/[v1,v2; v3,v4-10].'
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!