Skip to content

Commit eba6304

Browse files
committed
update references to .matplotlibrc, now matplotlibrc
svn path=/trunk/matplotlib/; revision=2936
1 parent 7010b53 commit eba6304

File tree

5 files changed

+5
-13
lines changed

5 files changed

+5
-13
lines changed

INSTALL

+1-9
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,7 @@ WINDOWS
7373
out of the box: agg, wx, wxagg, tkagg, ps and svg.
7474

7575
For standard python installations, you will also need to install
76-
either Numeric or numarray in addition to the matplotlib installer.
77-
matplotlib provides installers for Numeric and numarray users. It
78-
is important that you pick the matplotlib installer that corresponds
79-
to your array package. Ie, if you mostly work with numarray arrays,
80-
use the matplotlib numarray installer. matplotlib has a 'numerix'
81-
setting in the matplotlib rc file (which by default resides in
82-
c:\python23\share\matplotlitb\.matplotlibrc) and you should make
83-
sure this setting corresponds to your preferred array package.
84-
76+
either numpy, Numeric or numarray in addition to the matplotlib installer.
8577
With a standard python + Numeric/numarray + matplotlib, the
8678
following backends should work on windows: agg, tkagg, ps, svg. If
8779
you want others, eg a wx, wxagg, gtk or gtkagg, you'll need to

examples/image_origin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
You can specify whether images should be plotted with the array origin
44
x[0,0] in the upper left or upper right by using the origin parameter.
55
You can also control the default be setting image.origin in your
6-
matplotlibrc file; see http://matplotlib.sourceforge.net/.matplotlibrc
6+
matplotlibrc file; see http://matplotlib.sourceforge.net/matplotlibrc
77
"""
88
from pylab import *
99

examples/webapp_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# The rc command is used to create per-script default figure
88
# customizations of the rc parameters; see
9-
# http://matplotlib.sf.net/.matplotlibrc . You may prefer to set the
9+
# http://matplotlib.sf.net/matplotlibrc . You may prefer to set the
1010
# rc parameters in the rc file itself. Note that you can keep
1111
# directory level default configurations by placing different rc files
1212
# in the directory that the script runs in.

lib/matplotlib/contour.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ def set_alpha(self, alpha):
803803
specified
804804
805805
- if linewidths == None, the default width in lines.linewidth in
806-
.matplotlibrc is used
806+
matplotlibrc is used
807807
808808
contourf only:
809809
***** Obsolete: ****

lib/matplotlib/pylab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ def figure(num=None, # autoincrement if None, else integer from 1-N
849849
facecolor - the background color; defaults to rc figure.facecolor
850850
edgecolor - the border color; defaults to rc figure.edgecolor
851851
852-
rcParams gives the default values from the .matplotlibrc file
852+
rcParams gives the default values from the matplotlibrc file
853853
854854
FigureClass is a Figure or derived class that will be passed on to
855855
new_figure_manager in the backends which allows you to hook custom

0 commit comments

Comments
 (0)