Axes.streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None, norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1, transform=None, zorder=2, start_points=None)¶Draws streamlines of a vector flow.
density = 1, the domain
is divided into a 30x30 grid—density linearly scales this grid.
Each cell in the grid can have, at most, one traversing streamline.
For different densities in each direction, use [density_x, density_y].ColormapNormalizeFancyArrowPatch.x and y arrays.Returns:
- stream_container
: StreamplotSetContainer object with attributes
- lines:
matplotlib.collections.LineCollectionof streamlines- arrows: collection of
matplotlib.patches.FancyArrowPatchobjects representing arrows half-way along stream lines.This container will probably change in the future to allow changes to the colormap, alpha, etc. for both lines and arrows, but these changes should be backward compatible.