polar data 3d plot

4 次查看(过去 30 天)
Hamed
Hamed 2023-12-3
回答: Chunru 2023-12-4
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 , .

回答(1 个)

Chunru
Chunru 2023-12-4
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';

类别

Help CenterFile Exchange 中查找有关 Polar Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by