How to define an ellipse by the eigendecomposition of its transformation matrix?

조회 수: 14 (최근 30일)
I'm trying to establish the correct setup for defining an ellipse as a 'stretch' of a circle and a rotation of the result. For simplicity assume the centres of the circle and therefore the ellipse to be so that the equation of the ellipse is
Now let the eigenvalues of be and so that the 'stretch' matrix is
and let the rotation, counter-clockwise, of an angle θ from the x-axis be achieved by the transformation
.
Since , is an admissible matrix of eigenvectors and it should be possible to express as the product of its eigendecomposition by
.
However, when I perform the reverse operation in practice, clearly something in the above is not correct, but I'm not sure what it is. The code snippet below illustrates the issue for and , . What is it I'm getting wrong?
>> theta = pi/4
theta =
0.7854
>> R = [cos(theta) sin(theta); -sin(theta) cos(theta)]
R =
0.70711 0.70711
-0.70711 0.70711
>> S = [1 0; 0 4]
S =
1 0
0 4
>> A = R*S*R'
A =
2.5 1.5
1.5 2.5
>> [V,D] = eig(A)
V =
-0.70711 0.70711
0.70711 0.70711
D =
1 0
0 4
>> V*D*V'-A
ans =
-4.4409e-16 -4.4409e-16
-4.4409e-16 -4.4409e-16
>>
  댓글 수: 8
William Rose
William Rose 2022년 9월 21일
@RickyBoy, that is a very nice compact and elegant bit of code from @Torsten.
In case you are still wondering about the sign in the rotation matrix, in which you had
R1=[cos(t), sin(t); -sin(t), cos(t)]
and @Torsten had
R2=[cos(t), -sin(t); sin(t), cos(t)]
The difference is that
y1=R1*x is equivalent to rotating the axes CCW by angle t. y1 is x, expressed in terms of the rotated axes.
y2=R2*x is equivalent to rotating the points CCW by angle t. y2 is the rotated x. The axes are unaltered.
By the way, when viewing plots of ellipses, you may want to use axis equal so that the aspect ratio is correctly represented.

댓글을 달려면 로그인하십시오.

채택된 답변

Torsten
Torsten 2022년 9월 21일
이동: Walter Roberson 2022년 9월 21일
phi = linspace(0,2*pi,100);
S = [1 0;0 4];
xy = S*[cos(phi);sin(phi)];
theta = pi/4;
Sxy = [cos(theta) -sin(theta);sin(theta) cos(theta)]*xy;
hold on
plot(xy(1,:),xy(2,:))
plot(Sxy(1,:),Sxy(2,:))
hold off
  댓글 수: 1
RickyBoy
RickyBoy 2022년 9월 21일
이동: Walter Roberson 2022년 9월 21일
Thank you, most helpful! I can't mark this as an accepted answer because it was submitted as a comment but if you submit it as an answer I will mark it as the accepted one. In any case, I appreciate your engagement.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by