Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d647104

Browse files
committed
trying to backport [#7913]
1 parent dfb4e9e commit d647104

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

lib/matplotlib/quiver.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
*headaxislength*. To make the head smaller relative to the shaft,
6464
scale down all the head parameters. You will probably do best to leave
6565
minshaft alone.
66+
<<<<<<< HEAD
6667
6768
*linewidths* and *edgecolors* can be used to customize the arrow
6869
outlines.
@@ -87,6 +88,32 @@
8788
8889
'dots' or 'inches': pixels or inches, based on the figure dpi
8990
91+
=======
92+
93+
*linewidths* and *edgecolors* can be used to customize the arrow
94+
outlines.
95+
96+
Parameters
97+
----------
98+
X : 1D or 2D array, sequence, optional
99+
The x coordinates of the arrow locations
100+
Y : 1D or 2D array, sequence, optional
101+
The y coordinates of the arrow locations
102+
U : 1D or 2D array or masked array, sequence
103+
The x components of the arrow vectors
104+
V : 1D or 2D array or masked array, sequence
105+
The y components of the arrow vectors
106+
C : 1D or 2D array, sequence, optional
107+
The arrow colors
108+
units : [ 'width' | 'height' | 'dots' | 'inches' | 'x' | 'y' | 'xy' ]
109+
The arrow dimensions (except for *length*) are measured in multiples of
110+
this unit.
111+
112+
'width' or 'height': the width or height of the axis
113+
114+
'dots' or 'inches': pixels or inches, based on the figure dpi
115+
116+
>>>>>>> 430e308... Merge pull request #7913 from dstansby/quiver-doc
90117
'x', 'y', or 'xy': respectively *X*, *Y*, or :math:`\sqrt{X^2 + Y^2}`
91118
in data units
92119

0 commit comments

Comments
 (0)