The angle and radius above the complex plane.
12 views (last 30 days)
Show older comments
I would like to mark the outside by marking the angle and radius as a single point on the complex plane consisting of the real axis and the imaginary axis.
I defined the angle and radius, but I can't see the picture. What should I do?
The angles are 10 degrees apart, and the radius taken by them is different.
2 Comments
Jan
on 25 Dec 2021
I do not understand the question. You want to marke the outside of what? What does "marking the angle and radius as a single point" mean? You can't see of the picture of what?
Accepted Answer
Simon Chan
on 27 Dec 2021
Something like this?
rho = [1.5 1.3 1.0];
theta = [10 20 30];
Z = rho.*exp(deg2rad(theta).*1i);
polarplot(Z,'*')

More Answers (1)
Voss
on 26 Dec 2021
Like this?
theta = 0:10:360;
r = linspace(1,2,numel(theta));
x = r.*cosd(theta);
y = r.*sind(theta);
figure()
plot(x,y)
Or perhaps this?
figure()
plot(x,y,'o')
2 Comments
Walter Roberson
on 27 Dec 2021
theta = 0:10:360;
r = linspace(1,2,numel(theta));
polarplot( deg2rad(theta), r)
See Also
Categories
Find more on Annotations 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!

