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

Skip to content

Commit 82b65c2

Browse files
authored
Merge pull request #9515 from anntzer/jdh-intro
Attribute users/intro to JDH and rename to history.
2 parents 6f8a17e + 192b26b commit 82b65c2

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

doc/users/intro.rst renamed to doc/users/history.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
Introduction
2-
============
1+
History
2+
=======
3+
4+
.. note::
5+
6+
The following introductory text was written in 2008 by John D. Hunter
7+
(1968-2012), the original author of Matplotlib.
38

49
Matplotlib is a library for making 2D plots of arrays in `Python
510
<https://www.python.org>`_. Although it has its origins in emulating
6-
the MATLAB |reg| [#]_ graphics commands, it is
11+
the MATLAB graphics commands, it is
712
independent of MATLAB, and can be used in a Pythonic, object oriented
813
way. Although Matplotlib is written primarily in pure Python, it
914
makes heavy use of `NumPy <http://www.numpy.org>`_ and other extension
1015
code to provide good performance even for large arrays.
1116

12-
.. |reg| unicode:: 0xAE
13-
:ltrim:
14-
1517
Matplotlib is designed with the philosophy that you should be able to
1618
create simple plots with just a few commands, or just one! If you
1719
want to see a histogram of your data, you shouldn't need to
@@ -62,10 +64,10 @@ The Matplotlib code is conceptually divided into three parts: the
6264
*pylab interface* is the set of functions provided by
6365
:mod:`matplotlib.pylab` which allow the user to create plots with code
6466
quite similar to MATLAB figure generating code
65-
(:ref:`sphx_glr_tutorials_introductory_pyplot.py`). The *Matplotlib frontend* or *Matplotlib
67+
(:doc:`/tutorials/introductory/pyplot`). The *Matplotlib frontend* or *Matplotlib
6668
API* is the set of classes that do the heavy lifting, creating and
6769
managing figures, text, lines, plots and so on
68-
(:ref:`sphx_glr_tutorials_intermediate_artists.py`). This is an abstract interface that knows
70+
(:doc:`/tutorials/intermediate/artists`). This is an abstract interface that knows
6971
nothing about output. The *backends* are device-dependent drawing
7072
devices, aka renderers, that transform the frontend representation to
7173
hardcopy or a display device (:ref:`what-is-a-backend`). Example
@@ -87,8 +89,6 @@ people want to automatically generate PostScript files to send
8789
to a printer or publishers. Others deploy Matplotlib on a web
8890
application server to generate PNG output for inclusion in
8991
dynamically-generated web pages. Some use Matplotlib interactively
90-
from the Python shell in Tkinter on Windows. My primary use is to
92+
from the Python shell in Tkinter on Windows. My primary use is to
9193
embed Matplotlib in a Gtk+ EEG application that runs on Windows, Linux
9294
and Macintosh OS X.
93-
94-
.. [#] MATLAB is a registered trademark of The MathWorks, Inc.

doc/users/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ User's Guide
1212
.. toctree::
1313
:maxdepth: 2
1414

15-
intro.rst
15+
history.rst
1616
installing.rst
1717
../tutorials/index.rst
1818
interactive.rst

0 commit comments

Comments
 (0)