--- a/trunk/htdocs/matplotlib.axes.html.template +++ b/trunk/htdocs/matplotlib.axes.html.template @@ -13,7 +13,7 @@ <font color="#fffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr> <tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td> -<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="MLab.html">MLab</a><br> +<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="numarray.linear_algebra.mlab.html">numarray.linear_algebra.mlab</a><br> </td><td width="25%" valign=top><a href="math.html">math</a><br> </td><td width="25%" valign=top><a href="matplotlib.mlab.html">matplotlib.mlab</a><br> </td><td width="25%" valign=top><a href="sys.html">sys</a><br> @@ -241,7 +241,7 @@ <a href="#Axes-hold">hold</a>(True) # hold is on<br> <a href="#Axes-hold">hold</a>(False) # hold is off</tt></dd></dl> -<dl><dt><a name="Axes-imshow"><strong>imshow</strong></a>(self, X, cmap<font color="#909090">=<matplotlib.colors.Grayscale instance></font>)</dt><dd><tt>Display the image in array X to current axes. X must be a<br> +<dl><dt><a name="Axes-imshow"><strong>imshow</strong></a>(self, X, cmap<font color="#909090">=<matplotlib.colors.Grayscale instance></font>, alpha<font color="#909090">=1.0</font>)</dt><dd><tt>Display the image in array X to current axes. X must be a<br> float array<br> <br> If X is MxN, assume luminance (grayscale)<br> @@ -341,8 +341,8 @@ Note, the behavior of meshgrid in matlab is a bit<br> counterintuitive for x and y arrays. For example,<br> <br> - x = <a href="#-arange">arange</a>(7)<br> - y = <a href="#-arange">arange</a>(5)<br> + x = arange(7)<br> + y = arange(5)<br> X, Y = meshgrid(x,y)<br> <br> Z = rand( len(x), len(y))<br> @@ -382,8 +382,8 @@ Note, the behavior of meshgrid in matlab is a bit<br> counterintuitive for x and y arrays. For example,<br> <br> - x = <a href="#-arange">arange</a>(7)<br> - y = <a href="#-arange">arange</a>(5)<br> + x = arange(7)<br> + y = arange(5)<br> X, Y = meshgrid(x,y)<br> <br> Z = rand( len(x), len(y))<br> @@ -889,7 +889,7 @@ <a href="#Subplot-hold">hold</a>(True) # hold is on<br> <a href="#Subplot-hold">hold</a>(False) # hold is off</tt></dd></dl> -<dl><dt><a name="Subplot-imshow"><strong>imshow</strong></a>(self, X, cmap<font color="#909090">=<matplotlib.colors.Grayscale instance></font>)</dt><dd><tt>Display the image in array X to current axes. X must be a<br> +<dl><dt><a name="Subplot-imshow"><strong>imshow</strong></a>(self, X, cmap<font color="#909090">=<matplotlib.colors.Grayscale instance></font>, alpha<font color="#909090">=1.0</font>)</dt><dd><tt>Display the image in array X to current axes. X must be a<br> float array<br> <br> If X is MxN, assume luminance (grayscale)<br> @@ -989,8 +989,8 @@ Note, the behavior of meshgrid in matlab is a bit<br> counterintuitive for x and y arrays. For example,<br> <br> - x = <a href="#-arange">arange</a>(7)<br> - y = <a href="#-arange">arange</a>(5)<br> + x = arange(7)<br> + y = arange(5)<br> X, Y = meshgrid(x,y)<br> <br> Z = rand( len(x), len(y))<br> @@ -1030,8 +1030,8 @@ Note, the behavior of meshgrid in matlab is a bit<br> counterintuitive for x and y arrays. For example,<br> <br> - x = <a href="#-arange">arange</a>(7)<br> - y = <a href="#-arange">arange</a>(5)<br> + x = arange(7)<br> + y = arange(5)<br> X, Y = meshgrid(x,y)<br> <br> Z = rand( len(x), len(y))<br> @@ -1326,11 +1326,6 @@ <dl><dt><a name="-Func"><strong>Func</strong></a>(...)</dt><dd><tt><a href="#-Func">Func</a>(typecode)</tt></dd></dl> <dl><dt><a name="-Point"><strong>Point</strong></a>(...)</dt><dd><tt><a href="#-Point">Point</a>(x, y)</tt></dd></dl> <dl><dt><a name="-Value"><strong>Value</strong></a>(...)</dt><dd><tt><a href="#-Value">Value</a>(x)</tt></dd></dl> - <dl><dt><a name="-arange"><strong>arange</strong></a>(...)</dt><dd><tt><a href="#-arange">arange</a>(start, stop=None, step=1, typecode=None)<br> - <br> - Just like range() except it returns an array whose type can be<br> -specified by the keyword argument typecode.</tt></dd></dl> - <dl><dt><a name="-array"><strong>array</strong></a>(...)</dt><dd><tt><a href="#-array">array</a>(sequence, typecode=None, copy=1, savespace=0) will return a new array formed from the given (potentially nested) sequence with type given by typecode. If no typecode is given, then the type will be determined as the minimum type required to hold the objects in sequence. If copy is zero and sequence is already an array, a reference will be returned. If savespace is nonzero, the new array will maintain its precision in operations.</tt></dd></dl> </td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#55aa55"> @@ -1339,19 +1334,20 @@ <tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td> <td width="100%"><strong>False</strong> = False<br> -<strong>Float</strong> = 'd'<br> +<strong>Float</strong> = Float64<br> <strong>IDENTITY</strong> = 0<br> <strong>LOG10</strong> = 1<br> <strong>SEC_PER_DAY</strong> = 86400<br> <strong>SEC_PER_HOUR</strong> = 3600<br> +<strong>SEC_PER_MIN</strong> = 60<br> <strong>SEC_PER_WEEK</strong> = 604800<br> <strong>True</strong> = True<br> -<strong>absolute</strong> = <ufunc 'absolute'><br> +<strong>absolute</strong> = <UFunc: 'abs'><br> <strong>colorConverter</strong> = <matplotlib.colors.ColorConverter instance><br> <strong>division</strong> = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)<br> <strong>generators</strong> = _Feature((2, 2, 0, 'alpha', 1), (2, 3, 0, 'final', 0), 4096)<br> <strong>lineMarkers</strong> = {0: 1, 1: 1, 2: 1, 3: 1, '+': 1, ',': 1, '.': 1, '1': 1, '2': 1, '3': 1, ...}<br> <strong>lineStyles</strong> = {'-': 1, '--': 1, '-.': 1, ':': 1, 'None': 1}<br> -<strong>log10</strong> = <ufunc 'log10'><br> +<strong>log10</strong> = <UFunc: 'log10'><br> <strong>rcParams</strong> = {'axes.edgecolor': 'k', 'axes.facecolor': 'w', 'axes.grid': False, 'axes.hold': True, 'axes.labelcolor': 'k', 'axes.labelsize': 12.0, 'axes.linewidth': 1.0, 'axes.titlesize': 14.0, 'backend': 'GTKAgg', 'datapath': '/usr/local/share/matplotlib', ...}</td></tr></table> @footer@ \ No newline at end of file