Matlab rotation using vectors and sin/cos?
-
Hi, I was assigned a project to draw two rectangles using plot lines and rotating them by creating vectors for the x and y values using the variables on the rectangle using sin and cos. I have already plotted the lines but the rotation is not showing up, I'm not sure what is missing. clear all close all clc x1=2; y1=3; x2=5; y2=3; x3=2; y3=3.4; x4=5; y4=3.4; X1=5; Y1=3; X2=8; Y2=3; X3=5; Y3=3.4; X4=8; Y4=3.4; axis([0,10,0,10]); hold on; xlabel('x-axis'); ylabel('y-axis'); %rectangle one plot ([x1,x2],[y1,y2]); plot ([x1,x3],[y1,y3]); plot ([x3,x4],[y3,y4]); plot ([x4,x2],[y4,y2]); %rectangle two plot ([X1,X2],[Y1,Y2]); plot ([X1,X3],[Y1,Y3]); plot ([X3,X4],[Y3,Y4]); plot ([X4,X2],[Y4,Y2]); %rotation theta=30; x=[2;5;3;5]; y=[3;3;3.4;3.4]; xrot= x.*cosd(theta)+y.*sind(theta); yrot= -x.*sind(theta)+y.*cosd(theta); plot= [xrot,yrot];
-
Answer:
There are a couple errors I see. Your x vector (x = [2;5;3;5]) is incorrect. As defined earlier the points are 2,5,2,5. You should order the points by walking along each edge of the rectangle. Starting from the bottom left, the first rectangles x values are 2,5,5,2,2. There is a fifth value to account for returning to the rectangles origin. Another error is that you are creating a plot variable to hold xrot and yrot. It should be the plot function, not plot =. I find it redundant to create that x vector holding each x value for rotation, and in the beginning creating 4 x variables. Matlab Code: clear all close all clc rx1 = [2,5,5,2,2]; ry1 = [3,3,3.4,3.4,3]; rx2 = [5,8,8,5,5]; ry2 = [3,3,3.4,3.4,3]; axis([0,10,0,10]); hold on; xlabel('x-axis'); ylabel('y-axis'); %rectangle one plot (rx1,ry1); %rectangle two plot (rx2,ry2); %rotation theta=30; xrot= rx1.*cosd(theta)+ry1.*sind(theta); yrot= -rx1.*sind(theta)+ry1.*cosd(theta); plot(xrot,yrot,'r'); hold off;
McDonald at Yahoo! Answers Visit the source
Related Q & A:
- How to draw this fractal using MATLAB?Best solution by Stack Overflow
- How to find the derivative without using a symbolic function in Matlab?Best solution by Stack Overflow
- Is it a sin to eat pork for christisnans?Best solution by Yahoo! Answers
- How can I remove a picture's watermark using Matlab's image processing toolbox?Best solution by Yahoo! Answers
- Pros and cos about this 3 cars.... My lease is about to end and I'm looking for a new car?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.