没有头的Python颤动情节

时间:2016-05-11 05:52:33

标签: python matplotlib

我想制作一个没有箭头的颤动情节。我也希望有边框,以便箭头可以脱离背景颜色图。这是我的代码试图产生这样一个情节的主要部分:

plt.quiver(phia[sl1,sl2], R0a[sl1,sl2],u,v, color='white', headlength=0, headwidth = 1, pivot = 'middle', scale = scale, width=width, linewidth = 0.5)

如果这很重要,情节就在极轴上。这适用于大多数行,除了非常短的行。在这些情况下,在边界之后产生一些来自边界的人造尾巴。我生成的其中一个受影响最严重的是以下内容:

Quiver plot with artifacts at the end of lines

对此问题的任何解决方案或绕过它的建议将不胜感激!谢谢!

1 个答案:

答案 0 :(得分:5)

将箭头的headaxislength参数指定为零可以解决问题:

import numpy as np
import matplotlib.pyplot as plt

theta = np.linspace(0, 2*np.pi, 16)
r = np.linspace(0, 1, 6)
x = np.cos(theta)[:,np.newaxis]*r
y = np.sin(theta)[:,np.newaxis]*r

quiveropts = dict(color='white', headlength=0, pivot='middle', scale=3, 
    linewidth=.5, units='xy', width=.05, headwidth=1) # common options
f, (ax1, ax2) = plt.subplots(1,2, sharex=True, sharey=True)
ax1.quiver(x,y, -y, x, headaxislength=4.5, **quiveropts) # the default
ax2.quiver(x,y, -y, x, headaxislength=0, **quiveropts)

上面的代码导致以下quiverplots,没有箭头。 quiverplot without arrows