How to draw an arrow in Matlab?

前端 未结 5 1307
旧时难觅i
旧时难觅i 2020-11-30 06:00

I\'m trying to draw an arrow in matlab graph, without any success.

Code example:

function [ output_args ] = example( input_args )

figure (\'Name\',          


        
5条回答
  •  情书的邮戳
    2020-11-30 06:30

    You can use 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],  )
    

提交回复
热议问题