How to plot arrow with data coordinates in Matlab?

后端 未结 8 1942
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 19:37

I know there is a function named annotation can plot arrows or double arrows. But annotation can only plot in normalized unit. For example:

annotation(\'arro         


        
8条回答
  •  渐次进展
    2020-12-13 20:20

    You can use the 'arrow' component in the (well-documented) DaVinci Draw toolbox (full disclosure: I wrote/sell the toolbox, though arrows are free).

    Example syntax and example output are below.

    davinci( 'arrow', 'X', [0 10], 'Y', [0 2],  )
    

提交回复
热议问题