forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
forgot to check-in the main page template
- Loading branch information
1 parent
2e3634c
commit 5f6bfbe
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{% extends "!layout.html" %} | ||
{% set title = 'Scientific Computing Tools For Python' %} | ||
|
||
{% block body %} | ||
|
||
<p>NumPy is the fundamental package needed for scientific computing with Python. | ||
It contains among other things:</p> | ||
<ul class="simple"> | ||
<li>a powerful N-dimensional array object</li> | ||
<li>sophisticated (broadcasting) functions</li> | ||
<li>tools for integrating C/C++ and Fortran code</li> | ||
<li>useful linear algebra, Fourier transform, and random number capabilities.</li> | ||
</ul> | ||
<p>Besides its obvious scientific uses, NumPy can also be used as an efficient | ||
multi-dimensional container of generic data. Arbitrary data-types can be | ||
defined. This allows NumPy to seamlessly and speedily integrate with a wide | ||
variety of databases.</p> | ||
|
||
<div class="section" id="getting-started"> | ||
<h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1> | ||
<ul class="simple"> | ||
<li><a class="reference external" href="http://www.scipy.org/Download">Getting Numpy</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/Installing_SciPy">Installing NumPy and SciPy</a></li> | ||
<li><a class="reference external" href="http://docs.scipy.org/doc/">NumPy and SciPy documentation page</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/Tentative_NumPy_Tutorial">NumPy Tutorial</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/NumPy_for_Matlab_Users">NumPy for MATLAB© Users</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/Numpy_Functions_by_Category">NumPy functions by category</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/Mailing_Lists">NumPy Mailing List</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="section" id="more-information"> | ||
<h1>More Information<a class="headerlink" href="#more-information" title="Permalink to this headline">¶</a></h1> | ||
<ul class="simple"> | ||
<li><a class="reference external" href="http://sourceforge.net/projects/numpy/">NumPy Sourceforge Home Page</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/">SciPy Home Page</a></li> | ||
<li><a class="reference external" href="http://www.scipy.org/Topical_Software#head-7153b42ac4ea517c7d99ec4f4453555b2302a1f8">Interfacing with compiled code</a></li> | ||
<li><a class="reference external" href="old_array_packages.html"><em>Older python array packages</em></a></li> | ||
</ul> | ||
</div> | ||
|
||
<script type="text/javascript" src="http://www.ohloh.net/p/4894/widgets/project_partner_badge.js"></script> | ||
|
||
{% endblock %} |