Effacer les filtres
Effacer les filtres

Rotate circle on polar plot

10 vues (au cours des 30 derniers jours)
Andrew Luce
Andrew Luce le 24 Oct 2020
How do you rotate a circle a certain distance around the polar plot Theta=Linspace(0,2*pi) Rho=Sin(theta) Polarplot(theta,rho)

Réponses (1)

Mitchell Thurston
Mitchell Thurston le 24 Oct 2020
For this specific case, you can rotate by adding within the sin(theta) call.
theta = linspace(0,2*pi);
rot_ccw = 1; % rotate the circle counterclockwise by 1 radian
rho = sin(theta + rot_ccw);
polarplot(theta, rho)
  2 commentaires
Andrew Luce
Andrew Luce le 24 Oct 2020
Thank you I have a follow up question, if this circle was intersecting another circle. How could I find the Intersecting points?
Mitchell Thurston
Mitchell Thurston le 24 Oct 2020
Modifié(e) : Mitchell Thurston le 24 Oct 2020
You can try this out

Connectez-vous pour commenter.

Catégories

En savoir plus sur Polar Plots dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by