In Matlab Utilizing Eulers formula convert the polar coordin
In Matlab, Utilizing Euler’s formula, convert the polar coordinates to rectangular coordinates:
5(5*pi/11)
Solution
Given that R=5 and angle t=5*pi/11 so rectangular coordinates are defined by x and y
R=5; t=5*pi/11;
>> x=R*cos(t)
x =
0.7116
>> y=R*sin(t)
y =
4.9491
Hence rectangular coordinates are (x, y)=(0.7116, 4.9491)
