Question with rotating 2d vectors.
Show older comments
So the questions ask to use the code I had generated before which is:
function test
z=zeros(1,101);
w=zeros(1,101);
m=1;
for t=0:3.6:360
w(m) = ((1 + cosd(5*t))*cosd(t));
z(m) = ((1 + cosd(5*t))*sind(t));
m=m+1;
end
plot(w,z,'b--')
axis(5*[-1 1 -1 1])
end
and to rotate the flower image 50 degrees using the rotation matrix. How would I go about doing this?
Accepted Answer
More Answers (0)
Categories
Find more on Computational Geometry 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!