Polar P Color plot of excel sheet?

7 次查看(过去 30 天)
Hi, I have a Xlsx sheet of the data of wind with days and time.
I want to use this function "polarPcolor" for ploting, anyone here who can help me.
many thanks.

采纳的回答

Divyajyoti Nayak
Divyajyoti Nayak 2025-6-18
编辑:Divyajyoti Nayak 2025-6-19
As of MATLAB R2025a, the 'surf' and 'pcolor' functions can be used to create colored plots on polar coordinates. This can be used as an alternative to the 'polarPcolor' functions from File Exchange.
Here's some sample code:
clc
clear
r = (linspace(0,100,100))';
theta = linspace(0,2*pi,100);
data = r*sin(theta);
p = polaraxes;
surf(p,data)
Here's the documentation for the 'surf' function to help you out:

更多回答(0 个)

类别

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