from hthelpers import get_mpl_commands
plotcommands = get_mpl_commands()
@header@
<h2>Matlab(TM) compatible commands</h2>
Matplotlib provides a number of matlab compatible plotting commands.
In addition to these, a large number of matlab compatible commands are
provided by numpy. Below is a (growing) list of matlab compatible
commands.<p>
In addition, <a href=http://www.scipy.org/>scipy</a> provides many
more commands, but due to it's size, I haven't committed yet to making
it a requirement for matplotlib.<p>
<br>
<table>
+ for summary, commands in plotcommands:
<tr><td>
<table @default_table@>
<caption>
<h4>@summary@</h4>
</caption>
<tr><th>Function</th><th>Description</th></tr>
+ for command, desc in commands:
+ if summary=='Plotting commands':
<tr><td><a href=matplotlib.pyplot.html#-@command@>@command@</a></td><td>@desc@</td></tr>
= else:
<tr><td>@command@</td><td>@desc@</td></tr>
-
-
</table>
<br><br>
</td></tr>
-
</table>
@footer@