How to connect the points in an polar plot?
10 次查看(过去 30 天)
显示 更早的评论
I am trying to plot a hodograph plot as shown below. With the heklp of polar plot i could plot the points, however, i don't know how to connect a spline in between those points. Is it possible to do it somehow. I am posting my MWE.
Nomenclature:
- Ws - wind speed in m/s
- Wd - wind direction in degrees
- H - height for which the points are present in m
Ws = 15.*rand(10,1);
Wd = 360.*rand(10,1);
H = (20:20:200)';
Wd = Wd.*(pi/180);
[WdX, WsY] = pol2cart(Wd, Ws);
polar(WdX, WsY,'-b*');
0 个评论
采纳的回答
Matz Johansson Bergström
2014-7-17
Have you tried to connect your points with splines? See http://www.mathworks.se/help/matlab/examples/splines-in-two-dimensions.html for an example.
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Splines 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!