i have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
i imported the data in MATLAB, but cant find a proper way to plot them on the polar plot.
2 comentarios
Respuesta aceptada
KSSV
el 18 de Nov. de 2016
Editada: KSSV
el 18 de Nov. de 2016
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
Más respuestas (0)
Ver también
Categorías
Más información sobre Polar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!