i have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot?
1 view (last 30 days)
Show older comments
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
2 Comments
Accepted Answer
KSSV
on 18 Nov 2016
Edited: KSSV
on 18 Nov 2016
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
More Answers (0)
See Also
Categories
Find more on Polar Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!