Azzera filtri
Azzera filtri

polar data 3d plot

1 visualizzazione (ultimi 30 giorni)
Hamed
Hamed il 3 Dic 2023
Risposto: Chunru il 4 Dic 2023
I have my data in an array u with variales t (time), r (radius), and θ (polar angle). How can I plot the function at different times?
For example, I want to plot for all , and and , .

Risposte (1)

Chunru
Chunru il 4 Dic 2023
r = linspace(0,100, 101)';
theta = linspace(0, 360, 61);
t = 1; % single t point for simplicity here
u = 1./r.*cos(2*pi*.05*r) .* ones(size(theta)); % generate some data to plot
xx = r.*cosd(theta);
yy = r.*sind(theta);
p = pcolor(xx, yy, u);
p.EdgeColor = 'none';

Categorie

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by