Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
  5 Commenti
VBBV
VBBV il 23 Set 2020
Modificato: VBBV il 24 Set 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 il 24 Set 2020
Modificato: Adam Danz il 24 Set 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.

Accedi per commentare.

Risposta accettata

Adam Danz
Adam Danz il 24 Set 2020
Modificato: Adam Danz il 24 Set 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)

Più risposte (0)

Categorie

Scopri di più su Polar Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by