Menu

[r8989]: / trunk / htdocs / pylab_commands.html.template  Maximize  Restore  History

Download this file

45 lines (33 with data), 1.1 kB

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@

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.