Differences between revisions 11 and 12
Revision 11 as of 2014-05-14 20:33:06
Size: 208
Editor: 68
Comment:
Revision 12 as of 2014-05-14 21:57:45
Size: 993
Comment: revert spam
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
I am Corrine from Frederiksberg C. I am learning to play the Saxhorn. Other hobbies are Taxidermy.<<BR>>
<<BR>>
my homepage [[http://ireport.cnn.com/docs/DOC-1130582|dr peter osborne gluten free society]]
NumPy is a package that defines a multi-dimensional array object and associated fast math functions that operate on it. It also provides simple routines for linear algebra and fft and sophisticated random-number generation. NumPy replaces both Numeric and Numarray. http://www.scipy.org and http://www.numpy.org/

A very complete manual by the principal author of Numpy, Travis Oliphant, is [[http://csc.ucdavis.edu/~chaos/courses/nlp/Software/NumPyBook.pdf|available]] for free (although donations are accepted). Note that the online documentation via docstring is rather complete and not stripped in any way. Further documentation is available from http://docs.scipy.org/doc/

Many examples of numpy usage can be found at http://wiki.scipy.org/Numpy_Example_List

 '''numpy Example'''
{{{
from numpy import *

from PIL import Image


ar = ones((100,100),float32)

ar = ar * 100

for i in range(0,100):
    ar[i,:] = 100 + (i * 1.5)

im = Image.fromarray(ar,"F")
}}}

NumPy is a package that defines a multi-dimensional array object and associated fast math functions that operate on it. It also provides simple routines for linear algebra and fft and sophisticated random-number generation. NumPy replaces both Numeric and Numarray. http://www.scipy.org and http://www.numpy.org/

A very complete manual by the principal author of Numpy, Travis Oliphant, is available for free (although donations are accepted). Note that the online documentation via docstring is rather complete and not stripped in any way. Further documentation is available from http://docs.scipy.org/doc/

Many examples of numpy usage can be found at http://wiki.scipy.org/Numpy_Example_List

  • numpy Example

from numpy import *

from PIL import Image


ar = ones((100,100),float32)

ar = ar * 100

for i in range(0,100):
    ar[i,:] = 100 + (i * 1.5)

im = Image.fromarray(ar,"F")

NumPy (last edited 2023-05-05 12:42:41 by eriky)

Unable to edit the page? See the FrontPage for instructions.