How can I plot a polar plot with varying colour

41 Ansichten (letzte 30 Tage)
john pappachen
john pappachen am 12 Sep. 2017
Beantwortet: Star Strider am 12 Sep. 2017
I have three values azimuth(A), elevation(E) and corresponding data values(V). I plot a polar plot using the command polar(A,V), and the plot I got is given below. But I want to show my third value ie; my data values corresponding to each azimuth and elevation in varying colour. is it possible?
I am attaching the data file herewith kindly looking for your suggestions
Thanking You

Antworten (2)

José-Luis
José-Luis am 12 Sep. 2017
  2 Kommentare
john pappachen
john pappachen am 12 Sep. 2017
Thank you so much
José-Luis
José-Luis am 12 Sep. 2017
Please accept the answer that best solves your problem.

Melden Sie sich an, um zu kommentieren.


Star Strider
Star Strider am 12 Sep. 2017
Please see my Answer to your previous Question: How can I plot 3D polar plot in MATLAB.
D = load('data.txt');
Az = D(:,1);
El = D(:,2);
Rd = D(:,3);
cn = ceil(max(El)); % Number Of Colors
cm = colormap(jet(cn));
figure(2)
polarscatter(Az*pi/180, Rd, [], cm(fix(El),:), 'filled')
grid on

Kategorien

Mehr zu Polar Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by