how can I plot 800 samples in a percentage cicle from 0 to 100% on x axis?

1 vue (au cours des 30 derniers jours)
  5 commentaires
VBBV
VBBV le 23 Sep 2020
Modifié(e) : VBBV le 24 Sep 2020
%if true
% code
% end
S = 0:770; % change it acc to length of y data
Sp = S/770; % x data
Y = [...];% y data
plot(Sp*100,Y);
Adam Danz
Adam Danz le 24 Sep 2020
Modifié(e) : Adam Danz le 24 Sep 2020
The x axis in the image you shared is far from circular (see polaraxes). The x axis is linear from 0 to 100.
I'm lost.

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 24 Sep 2020
Modifié(e) : Adam Danz le 24 Sep 2020
If you wanted to normalize the X values (Sp) so that they span from 0 to 100,
SpNorm = (Sp-min(Sp))./range(Sp)*100;
plot(SpNorm, Y)

Plus de réponses (0)

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by