MATLAB: I have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot

angle

i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.

Best Answer

Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
Related Question