Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a530e79

Browse filesBrowse files
committed
change streamline to stream line and streamplot to stream plot
1 parent d76d4fe commit a530e79
Copy full SHA for a530e79

File tree

Expand file treeCollapse file tree

1 file changed

+6
-7
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-7
lines changed

‎examples/images_contours_and_fields/streamplot_demo.py

Copy file name to clipboardExpand all lines: examples/images_contours_and_fields/streamplot_demo.py
+6-7Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
Streamplot
44
==========
55
6-
A streamplot, or streamline plot, is used to display 2D vector fields. This
6+
A stream plot, or stream line plot, is used to display 2D vector fields. This
77
example shows a few features of the stream plot function:
88
9-
* Varying the color along a streamline.
10-
* Varying the density of streamlines.
9+
* Varying the color along a stream line.
10+
* Varying the density of stream lines.
1111
* Varying the line width along a stream line.
12-
* Controlling the start points of streamlines.
13-
* Streamlines skipping masked regions and NaN values.
12+
* Controlling the starting points of stream lines.
13+
* Stream lines skipping masked regions and NaN values.
1414
"""
1515
import numpy as np
1616
import matplotlib.pyplot as plt
@@ -56,8 +56,7 @@
5656

5757
# Displaying the starting points with blue symbols.
5858
ax3.plot(seed_points[0], seed_points[1], 'bo')
59-
60-
ax3.axis((-3, 3, -3, 3))
59+
ax3.axis((-w, w, -w, w))
6160

6261
# Create a mask
6362
w = 3

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.