我想绘制一朵风玫瑰,但我的风速数据非常低(0-20)。我在这里找到了WindRose包(https://se.mathworks.com/matlabcentral/fileexchange/47248-wind-rose),它给我提供了图。但我找不到如何更改风速值或如何更改图例标题的方法。谢谢你的帮助!
发布于 2019-04-08 21:00:56
从function documentation可以看出,在调用函数时,您可以简单地设置以下两个参数。
第一个将接受您的图例标题作为输入。
第二个将采用最大风速。还有另一个选项('nspeeds')也可以设置所需的箱数(i.e.the number间隔介于0和最大风速之间)
% PARAMETER CLASS DEFAULT VALUE DESCRIPTION
'lablegend' String. 'Wind speeds in m/s' String that will appear at the top of the legend. Can be empty.
'speedround' Numeric. [] (auto) Maximum wind speed will be rounded to the first higher whole multiple of WindSpeedRound.https://stackoverflow.com/questions/55561464
复制相似问题