Coordinates in degree in Rose plot
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to plot the following coordinates in a rose plot, so I get something that looks like a compass, with a representation for the element at the respective direction. I have tried different bins, but did not get the right result.
a= [30,
180,
40,
260,
310,
]
rose(a,360)
0 comentarios
Respuestas (1)
Ilham Hardy
el 20 de Mayo de 2015
rose theta input is expressed in radians (most of trig-related matlab functions are in radians).
You can try this:
rose(a.*(pi/180),360)
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D 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!