Plotting a bar graph on a circular axis
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Harrison Chong
el 4 de En. de 2023
Comentada: Harrison Chong
el 5 de En. de 2023
Could anyone point me in the direction of being able to produce a bar graph on a circular axis like in the picture attached? (Not asking for complete code, just a pointer).

0 comentarios
Respuesta aceptada
John D'Errico
el 4 de En. de 2023
Editada: John D'Errico
el 4 de En. de 2023
Just to make up some data...
n = 100;
theta = linspace(0,2*pi,n);
r = 10 + rand(1,n);
r = [r;r+1+rand(1,n)];
Ok. now I have some data. Just call polar.
polar([theta;theta],r,'-')
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!
