i have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
2 Kommentare
Akzeptierte Antwort
KSSV
am 18 Nov. 2016
Bearbeitet: KSSV
am 18 Nov. 2016
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polar Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!