了解Matplotlib的箭袋绘图

时间:2016-04-10 19:17:56

标签: python vector matplotlib

我正在努力了解(1,1)的工作原理。我的问题如下:

我绘制了一个简单的向量import numpy as np import matplotlib.pyplot as plt fig = plt.figure(2) ax = fig.add_subplot(111) ax.quiver(0,0, 1, 1, units = 'xy', scale = 1) plt.xticks(range(-5,6)) plt.yticks(range(-5,6)) plt.grid()

(0,0)

我希望箭头从(1,1)转到(0,3),但结果略有偏离:vector 1,1

同样,我尝试为矢量(0,3.5)绘制一个箭头,结果箭头似乎是矢量'units' ......

enter image description here

我的假设是,这与 kwargs 'scale''angles''scale_units'和& fork。我已经阅读了关于它们的文档,但没有完全理解它们是如何工作的。周日学校的解释将不胜感激!

0 个答案:

没有答案