plotting sinuos curve using matlab

5 vues (au cours des 30 derniers jours)
fima v
fima v le 14 Fév 2017
Déplacé(e) : DGM le 9 Oct 2024
Hello , i wrote the following code by the known formulla which is attached,but instead of getting the desired sinous shape ,i get a baloon, if any one could tell where did i go wrong . Thanks
*********************
alpha=0.87
tau=1.35
r=1:0.01:1.35;
phi=alpha*sin((log(r)*pi)/(log(tau)));
figure;polarplot(r,phi);
***************************

Réponses (1)

Honglei Chen
Honglei Chen le 14 Fév 2017
looks like it should be
polarplot(phi,r)
instead of
polarplot(r,phi)
HTH
  1 commentaire
fima v
fima v le 14 Fév 2017
Déplacé(e) : DGM le 9 Oct 2024
Thank you very much

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by