blob: 1a71ea1ab87a14e9c8e73decc20549b78ad30888 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
{% extends "!layout.html" %}
{% set title = 'Scientific Computing Tools For Python' %}
{% block body %}
<table>
<tr>
<td style="border-style: none;">
<a href="http://new.scipy.org/download.html">
<img alt="Download" src="_static/images/download.png" title="Download" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
<td style="border: medium none ;">
<a href="http://new.scipy.org/getting-started.html">
<img alt="Getting Started" src="_static/images/tutorial.png" title="Getting Started" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
<td style="border: medium none ;">
<a href="http://docs.scipy.org">
<img alt="Documentation" src="_static/images/documentation.png" title="Documentation" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
<td style="border: medium none ;">
<a href="http://new.scipy.org/bug-report.html">
<img alt="Bug Report" src="_static/images/bugs.png" title="Bug Report" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
<td style="border: medium none ;">
<a href="http://planet.scipy.org">
<img alt="Blog" src="_static/images/feed-icon.png" title="Blog" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
</tr>
<tr>
<td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/download.html">Download</a></small></strong></td>
<td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/getting-started.html">Getting Started</a></small></strong></td>
<td style="border: medium none; text-align: center;"><strong><small><a href="http://docs.scipy.org">Documentation</a></small></strong></td>
<td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/bug-report.html">Report Bugs</a></small></strong></td>
<td style="border: medium none; text-align: center;"><strong><small><a href="http://planet.scipy.org">Read the Blog</a></small></strong></td>
</tr>
</table>
<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>
<p>Numpy is licensed under the <a class="reference external" href="license.html">BSD license</a>,
enabling reuse with few restrictions.</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>
<div style="padding-top: 40px;" align=center>
<script type="text/javascript" src="http://www.ohloh.net/p/4894/widgets/project_partner_badge.js"></script>
</div>
{% endblock %}
|