In Matlab how do I change the arrow head style in quiver plot?

前端 未结 5 1379
耶瑟儿~
耶瑟儿~ 2020-12-05 03:23

I would like to change the default arrow head style in quiver plot. How can I change it?

5条回答
  •  失恋的感觉
    2020-12-05 03:59

    This answer of pablo1977 was the most instructive for me. I managed to get bigger arrow heads by adjusting the quiver group properties, namely by these 2 lines of code:

    h = quiver(...);
    set(h,'MaxHeadSize',1e2,'AutoScaleFactor',1);
    

提交回复
热议问题