How to refresh the data in polar plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Tharindu Weerakoon
le 26 Déc 2014
Commenté : Robert
le 3 Nov 2016
I wanna refresh the data of polar plot with new data set.
How can I use set or refreshdata in the program?
I know how deal this with Cartesian plot, plot command.
for example:
x = linspace(0,8);
y = sin(x);
figure
h = plot(x,y);
h.XDataSource = 'x';
h.YDataSource = 'y';
y = sin(x.^3);
refreshdata
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 26 Déc 2014
Modifié(e) : Azzi Abdelmalek
le 26 Déc 2014
x = linspace(0,8);
y = sin(x);
[theta,rho] = cart2pol(x,y)
h=polar(theta,rho,'--r')
h.YDataSource = 'y';
y = sin(x.^3);
refreshdata
2 commentaires
Plus de réponses (0)
Voir également
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!