MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / draw_quiver

Function draw_quiver

lib/matplotlib/tests/test_quiver.py:12–19  ·  view source on GitHub ↗
(ax, **kwargs)

Source from the content-addressed store, hash-verified

10
11
12def draw_quiver(ax, **kwargs):
13 X, Y = np.meshgrid(np.arange(0, 2 * np.pi, 1),
14 np.arange(0, 2 * np.pi, 1))
15 U = np.cos(X)
16 V = np.sin(Y)
17
18 Q = ax.quiver(U, V, **kwargs)
19 return Q
20
21
22@pytest.mark.skipif(platform.python_implementation() != 'CPython',

Callers 4

test_quiver_memory_leakFunction · 0.85
test_quiver_animateFunction · 0.85
test_quiver_with_keyFunction · 0.85

Calls 1

quiverMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…