"Numeric Python" -> "NumPy"

This commit is contained in:
Benjamin Peterson 2016-05-26 22:51:32 -07:00
parent 33bc4a2983
commit 6d3ad2f64d

View file

@ -1200,7 +1200,7 @@ use a list comprehension::
w, h = 2, 3
A = [[None] * w for i in range(h)]
Or, you can use an extension that provides a matrix datatype; `Numeric Python
Or, you can use an extension that provides a matrix datatype; `NumPy
<http://www.numpy.org/>`_ is the best known.