我想註釋一個matplotlib圖中的某些長度。例如,點A和B之間的距離。在matplotlib中註釋尺寸
爲此,我想我可以使用annotate並找出如何提供箭頭的開始和結束位置。或者,使用arrow並標出該點。
我試圖用後者,但我無法弄清楚如何獲得2箭頭:
from pylab import *
for i in [0, 1]:
for j in [0, 1]:
plot(i, j, 'rx')
axis([-1, 2, -1, 2])
arrow(0.1, 0, 0, 1, length_includes_head=True, head_width=.03) # Draws a 1-headed arrow
show()
如何創建一個2箭頭?更好的是,還有另一種(簡單的)在matplotlib數字中標註尺寸的方法嗎?
[技術圖紙繪製距離箭頭(可能重複http://stackoverflow.com/questions/14612637/plotting-distance-箭頭在技術繪圖) – 2013-02-17 22:21:40