numpy 1.9.2__zip → 1.10.0__zip

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1593) hide show
  1. numpy-1.10.0.post2/INSTALL.txt +200 -0
  2. numpy-1.10.0.post2/LICENSE.txt +30 -0
  3. numpy-1.10.0.post2/MANIFEST.in +31 -0
  4. numpy-1.10.0.post2/PKG-INFO +47 -0
  5. numpy-1.10.0.post2/cnew.txt +117 -0
  6. numpy-1.10.0.post2/cold.txt +44 -0
  7. numpy-1.10.0.post2/committers.txt +160 -0
  8. numpy-1.10.0.post2/cpre.txt +283 -0
  9. numpy-1.10.0.post2/crel.txt +161 -0
  10. numpy-1.10.0.post2/doc/release/1.10.0-notes.rst +439 -0
  11. numpy-1.10.0.post2/doc/scipy-sphinx-theme/.git +1 -0
  12. numpy-1.10.0.post2/doc/source/conf.py +331 -0
  13. numpy-1.10.0.post2/doc/source/dev/development_environment.rst +211 -0
  14. numpy-1.10.0.post2/doc/source/dev/gitwash/development_workflow.rst +534 -0
  15. numpy-1.10.0.post2/doc/source/dev/gitwash/git_links.inc +95 -0
  16. numpy-1.10.0.post2/doc/source/dev/gitwash/index.rst +14 -0
  17. numpy-1.10.0.post2/doc/source/dev/index.rst +11 -0
  18. numpy-1.10.0.post2/doc/source/reference/arrays.classes.rst +490 -0
  19. numpy-1.10.0.post2/doc/source/reference/arrays.dtypes.rst +536 -0
  20. numpy-1.10.0.post2/doc/source/reference/arrays.indexing.rst +549 -0
  21. numpy-1.10.0.post2/doc/source/reference/arrays.interface.rst +337 -0
  22. numpy-1.10.0.post2/doc/source/reference/arrays.ndarray.rst +622 -0
  23. numpy-1.10.0.post2/doc/source/reference/arrays.scalars.rst +291 -0
  24. numpy-1.10.0.post2/doc/source/reference/c-api.array.rst +3393 -0
  25. numpy-1.10.0.post2/doc/source/reference/c-api.config.rst +103 -0
  26. numpy-1.10.0.post2/doc/source/reference/c-api.coremath.rst +420 -0
  27. numpy-1.10.0.post2/doc/source/reference/c-api.dtype.rst +376 -0
  28. numpy-1.10.0.post2/doc/source/reference/c-api.generalized-ufuncs.rst +191 -0
  29. numpy-1.10.0.post2/doc/source/reference/c-api.iterator.rst +1300 -0
  30. numpy-1.10.0.post2/doc/source/reference/c-api.types-and-structures.rst +1240 -0
  31. numpy-1.10.0.post2/doc/source/reference/c-api.ufunc.rst +413 -0
  32. numpy-1.10.0.post2/doc/source/reference/index.rst +43 -0
  33. numpy-1.10.0.post2/doc/source/reference/internals.code-explanations.rst +615 -0
  34. numpy-1.10.0.post2/doc/source/reference/routines.array-manipulation.rst +115 -0
  35. numpy-1.10.0.post2/doc/source/reference/routines.io.rst +78 -0
  36. numpy-1.10.0.post2/doc/source/reference/routines.linalg.rst +91 -0
  37. numpy-1.10.0.post2/doc/source/reference/routines.ma.rst +407 -0
  38. numpy-1.10.0.post2/doc/source/reference/routines.sort.rst +41 -0
  39. numpy-1.10.0.post2/doc/source/reference/routines.statistics.rst +57 -0
  40. numpy-1.10.0.post2/doc/source/reference/swig.interface-file.rst +1066 -0
  41. numpy-1.10.0.post2/doc/source/reference/swig.testing.rst +167 -0
  42. numpy-1.10.0.post2/doc/source/reference/ufuncs.rst +666 -0
  43. numpy-1.10.0.post2/doc/source/release.rst +20 -0
  44. numpy-1.10.0.post2/doc/source/user/basics.io.genfromtxt.rst +531 -0
  45. numpy-1.10.0.post2/doc/source/user/basics.rec.rst +7 -0
  46. numpy-1.10.0.post2/doc/source/user/c-info.beyond-basics.rst +560 -0
  47. numpy-1.10.0.post2/doc/source/user/c-info.how-to-extend.rst +642 -0
  48. numpy-1.10.0.post2/doc/source/user/c-info.python-as-glue.rst +1177 -0
  49. numpy-1.10.0.post2/doc/source/user/c-info.ufunc-tutorial.rst +1211 -0
  50. numpy-1.10.0.post2/doc/source/user/install.rst +194 -0
  51. numpy-1.10.0.post2/doc/sphinxext/.git +1 -0
  52. numpy-1.10.0.post2/numpy/__init__.py +227 -0
  53. numpy-1.10.0.post2/numpy/_build_utils/README +8 -0
  54. numpy-1.10.0.post2/numpy/_build_utils/apple_accelerate.py +21 -0
  55. numpy-1.10.0.post2/numpy/_build_utils/common.py +138 -0
  56. numpy-1.10.0.post2/numpy/_build_utils/src/apple_sgemv_fix.c +227 -0
  57. numpy-1.10.0.post2/numpy/_build_utils/waf.py +531 -0
  58. numpy-1.10.0.post2/numpy/_import_tools.py +353 -0
  59. numpy-1.10.0.post2/numpy/add_newdocs.py +7611 -0
  60. numpy-1.10.0.post2/numpy/compat/_inspect.py +194 -0
  61. numpy-1.10.0.post2/numpy/compat/py3k.py +88 -0
  62. numpy-1.10.0.post2/numpy/compat/setup.py +12 -0
  63. numpy-1.10.0.post2/numpy/core/__init__.py +89 -0
  64. numpy-1.10.0.post2/numpy/core/_internal.py +761 -0
  65. numpy-1.10.0.post2/numpy/core/_methods.py +133 -0
  66. numpy-1.10.0.post2/numpy/core/arrayprint.py +760 -0
  67. numpy-1.10.0.post2/numpy/core/code_generators/cversions.txt +34 -0
  68. numpy-1.10.0.post2/numpy/core/code_generators/generate_ufunc_api.py +219 -0
  69. numpy-1.10.0.post2/numpy/core/code_generators/generate_umath.py +1017 -0
  70. numpy-1.10.0.post2/numpy/core/code_generators/numpy_api.py +415 -0
  71. numpy-1.10.0.post2/numpy/core/code_generators/ufunc_docstrings.py +3442 -0
  72. numpy-1.10.0.post2/numpy/core/defchararray.py +2689 -0
  73. numpy-1.10.0.post2/numpy/core/fromnumeric.py +3089 -0
  74. numpy-1.10.0.post2/numpy/core/function_base.py +203 -0
  75. numpy-1.10.0.post2/numpy/core/getlimits.py +308 -0
  76. numpy-1.10.0.post2/numpy/core/include/numpy/ndarrayobject.h +246 -0
  77. numpy-1.10.0.post2/numpy/core/include/numpy/ndarraytypes.h +1797 -0
  78. numpy-1.10.0.post2/numpy/core/include/numpy/npy_3kcompat.h +448 -0
  79. numpy-1.10.0.post2/numpy/core/include/numpy/npy_common.h +1051 -0
  80. numpy-1.10.0.post2/numpy/core/include/numpy/npy_cpu.h +92 -0
  81. numpy-1.10.0.post2/numpy/core/include/numpy/npy_endian.h +61 -0
  82. numpy-1.10.0.post2/numpy/core/include/numpy/npy_math.h +525 -0
  83. numpy-1.10.0.post2/numpy/core/include/numpy/numpyconfig.h +36 -0
  84. numpy-1.10.0.post2/numpy/core/machar.py +342 -0
  85. numpy-1.10.0.post2/numpy/core/memmap.py +311 -0
  86. numpy-1.10.0.post2/numpy/core/numeric.py +2893 -0
  87. numpy-1.10.0.post2/numpy/core/numerictypes.py +1036 -0
  88. numpy-1.10.0.post2/numpy/core/records.py +846 -0
  89. numpy-1.10.0.post2/numpy/core/setup.py +983 -0
  90. numpy-1.10.0.post2/numpy/core/setup_common.py +352 -0
  91. numpy-1.10.0.post2/numpy/core/shape_base.py +350 -0
  92. numpy-1.10.0.post2/numpy/core/src/multiarray/alloc.c +244 -0
  93. numpy-1.10.0.post2/numpy/core/src/multiarray/arrayobject.c +1858 -0
  94. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.c.src +4738 -0
  95. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.h +37 -0
  96. numpy-1.10.0.post2/numpy/core/src/multiarray/buffer.c +981 -0
  97. numpy-1.10.0.post2/numpy/core/src/multiarray/calculation.c +1224 -0
  98. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.c +812 -0
  99. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.h +10 -0
  100. numpy-1.10.0.post2/numpy/core/src/multiarray/common.c +911 -0
  101. numpy-1.10.0.post2/numpy/core/src/multiarray/common.h +250 -0
  102. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.c +1664 -0
  103. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.h +24 -0
  104. numpy-1.10.0.post2/numpy/core/src/multiarray/conversion_utils.c +1217 -0
  105. numpy-1.10.0.post2/numpy/core/src/multiarray/convert.c +590 -0
  106. numpy-1.10.0.post2/numpy/core/src/multiarray/convert_datatype.c +2155 -0
  107. numpy-1.10.0.post2/numpy/core/src/multiarray/ctors.c +3838 -0
  108. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime.c +3821 -0
  109. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busday.c +1322 -0
  110. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busdaycal.c +552 -0
  111. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_strings.c +1772 -0
  112. numpy-1.10.0.post2/numpy/core/src/multiarray/descriptor.c +3719 -0
  113. numpy-1.10.0.post2/numpy/core/src/multiarray/dtype_transfer.c +4239 -0
  114. numpy-1.10.0.post2/numpy/core/src/multiarray/einsum.c.src +3005 -0
  115. numpy-1.10.0.post2/numpy/core/src/multiarray/getset.c +986 -0
  116. numpy-1.10.0.post2/numpy/core/src/multiarray/hashdescr.c +318 -0
  117. numpy-1.10.0.post2/numpy/core/src/multiarray/item_selection.c +2413 -0
  118. numpy-1.10.0.post2/numpy/core/src/multiarray/iterators.c +2192 -0
  119. numpy-1.10.0.post2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +1769 -0
  120. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.c +3380 -0
  121. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.h +77 -0
  122. numpy-1.10.0.post2/numpy/core/src/multiarray/methods.c +2514 -0
  123. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarray_tests.c.src +1035 -0
  124. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.c +4628 -0
  125. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.h +15 -0
  126. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_api.c +2809 -0
  127. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_constr.c +3160 -0
  128. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_pywrap.c +2499 -0
  129. numpy-1.10.0.post2/numpy/core/src/multiarray/number.c +1106 -0
  130. numpy-1.10.0.post2/numpy/core/src/multiarray/number.h +77 -0
  131. numpy-1.10.0.post2/numpy/core/src/multiarray/numpymemoryview.c +308 -0
  132. numpy-1.10.0.post2/numpy/core/src/multiarray/numpyos.c +683 -0
  133. numpy-1.10.0.post2/numpy/core/src/multiarray/scalarapi.c +870 -0
  134. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.c.src +4343 -0
  135. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.h +55 -0
  136. numpy-1.10.0.post2/numpy/core/src/multiarray/shape.c +1131 -0
  137. numpy-1.10.0.post2/numpy/core/src/multiarray/ucsnarrow.c +174 -0
  138. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.c +180 -0
  139. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.h +18 -0
  140. numpy-1.10.0.post2/numpy/core/src/npymath/ieee754.c.src +808 -0
  141. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math.c.src +597 -0
  142. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_complex.c.src +1788 -0
  143. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_private.h +544 -0
  144. numpy-1.10.0.post2/numpy/core/src/npysort/heapsort.c.src +402 -0
  145. numpy-1.10.0.post2/numpy/core/src/npysort/mergesort.c.src +488 -0
  146. numpy-1.10.0.post2/numpy/core/src/npysort/npysort_common.h +360 -0
  147. numpy-1.10.0.post2/numpy/core/src/npysort/quicksort.c.src +523 -0
  148. numpy-1.10.0.post2/numpy/core/src/npysort/selection.c.src +426 -0
  149. numpy-1.10.0.post2/numpy/core/src/private/npy_cblas.h +584 -0
  150. numpy-1.10.0.post2/numpy/core/src/private/npy_config.h +101 -0
  151. numpy-1.10.0.post2/numpy/core/src/private/npy_import.h +32 -0
  152. numpy-1.10.0.post2/numpy/core/src/private/npy_partition.h.src +122 -0
  153. numpy-1.10.0.post2/numpy/core/src/private/npy_sort.h +196 -0
  154. numpy-1.10.0.post2/numpy/core/src/private/templ_common.h.src +43 -0
  155. numpy-1.10.0.post2/numpy/core/src/private/ufunc_override.h +397 -0
  156. numpy-1.10.0.post2/numpy/core/src/umath/funcs.inc.src +356 -0
  157. numpy-1.10.0.post2/numpy/core/src/umath/loops.c.src +2675 -0
  158. numpy-1.10.0.post2/numpy/core/src/umath/loops.h.src +497 -0
  159. numpy-1.10.0.post2/numpy/core/src/umath/operand_flag_tests.c.src +105 -0
  160. numpy-1.10.0.post2/numpy/core/src/umath/scalarmath.c.src +1738 -0
  161. numpy-1.10.0.post2/numpy/core/src/umath/simd.inc.src +903 -0
  162. numpy-1.10.0.post2/numpy/core/src/umath/test_rational.c.src +1404 -0
  163. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_object.c +5703 -0
  164. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_type_resolution.c +2159 -0
  165. numpy-1.10.0.post2/numpy/core/src/umath/umath_tests.c.src +392 -0
  166. numpy-1.10.0.post2/numpy/core/src/umath/umathmodule.c +443 -0
  167. numpy-1.10.0.post2/numpy/core/tests/test_abc.py +47 -0
  168. numpy-1.10.0.post2/numpy/core/tests/test_api.py +515 -0
  169. numpy-1.10.0.post2/numpy/core/tests/test_arrayprint.py +171 -0
  170. numpy-1.10.0.post2/numpy/core/tests/test_datetime.py +1820 -0
  171. numpy-1.10.0.post2/numpy/core/tests/test_defchararray.py +703 -0
  172. numpy-1.10.0.post2/numpy/core/tests/test_deprecations.py +619 -0
  173. numpy-1.10.0.post2/numpy/core/tests/test_dtype.py +578 -0
  174. numpy-1.10.0.post2/numpy/core/tests/test_einsum.py +627 -0
  175. numpy-1.10.0.post2/numpy/core/tests/test_errstate.py +52 -0
  176. numpy-1.10.0.post2/numpy/core/tests/test_function_base.py +142 -0
  177. numpy-1.10.0.post2/numpy/core/tests/test_getlimits.py +77 -0
  178. numpy-1.10.0.post2/numpy/core/tests/test_half.py +436 -0
  179. numpy-1.10.0.post2/numpy/core/tests/test_indexerrors.py +126 -0
  180. numpy-1.10.0.post2/numpy/core/tests/test_indexing.py +1047 -0
  181. numpy-1.10.0.post2/numpy/core/tests/test_item_selection.py +73 -0
  182. numpy-1.10.0.post2/numpy/core/tests/test_machar.py +29 -0
  183. numpy-1.10.0.post2/numpy/core/tests/test_memmap.py +130 -0
  184. numpy-1.10.0.post2/numpy/core/tests/test_multiarray.py +5924 -0
  185. numpy-1.10.0.post2/numpy/core/tests/test_multiarray_assignment.py +84 -0
  186. numpy-1.10.0.post2/numpy/core/tests/test_nditer.py +2638 -0
  187. numpy-1.10.0.post2/numpy/core/tests/test_numeric.py +2204 -0
  188. numpy-1.10.0.post2/numpy/core/tests/test_numerictypes.py +382 -0
  189. numpy-1.10.0.post2/numpy/core/tests/test_print.py +248 -0
  190. numpy-1.10.0.post2/numpy/core/tests/test_records.py +299 -0
  191. numpy-1.10.0.post2/numpy/core/tests/test_regression.py +2177 -0
  192. numpy-1.10.0.post2/numpy/core/tests/test_scalarinherit.py +41 -0
  193. numpy-1.10.0.post2/numpy/core/tests/test_scalarmath.py +316 -0
  194. numpy-1.10.0.post2/numpy/core/tests/test_shape_base.py +319 -0
  195. numpy-1.10.0.post2/numpy/core/tests/test_ufunc.py +1227 -0
  196. numpy-1.10.0.post2/numpy/core/tests/test_umath.py +1933 -0
  197. numpy-1.10.0.post2/numpy/core/tests/test_umath_complex.py +538 -0
  198. numpy-1.10.0.post2/numpy/core/tests/test_unicode.py +360 -0
  199. numpy-1.10.0.post2/numpy/distutils/__init__.py +23 -0
  200. numpy-1.10.0.post2/numpy/distutils/ccompiler.py +690 -0
  201. numpy-1.10.0.post2/numpy/distutils/command/autodist.py +94 -0
  202. numpy-1.10.0.post2/numpy/distutils/command/build.py +47 -0
  203. numpy-1.10.0.post2/numpy/distutils/command/build_clib.py +295 -0
  204. numpy-1.10.0.post2/numpy/distutils/command/build_ext.py +522 -0
  205. numpy-1.10.0.post2/numpy/distutils/command/config.py +437 -0
  206. numpy-1.10.0.post2/numpy/distutils/exec_command.py +651 -0
  207. numpy-1.10.0.post2/numpy/distutils/fcompiler/compaq.py +128 -0
  208. numpy-1.10.0.post2/numpy/distutils/fcompiler/gnu.py +403 -0
  209. numpy-1.10.0.post2/numpy/distutils/fcompiler/intel.py +217 -0
  210. numpy-1.10.0.post2/numpy/distutils/fcompiler/pg.py +63 -0
  211. numpy-1.10.0.post2/numpy/distutils/fcompiler/sun.py +55 -0
  212. numpy-1.10.0.post2/numpy/distutils/intelccompiler.py +95 -0
  213. numpy-1.10.0.post2/numpy/distutils/lib2def.py +116 -0
  214. numpy-1.10.0.post2/numpy/distutils/mingw32ccompiler.py +599 -0
  215. numpy-1.10.0.post2/numpy/distutils/misc_util.py +2306 -0
  216. numpy-1.10.0.post2/numpy/distutils/msvc9compiler.py +23 -0
  217. numpy-1.10.0.post2/numpy/distutils/msvccompiler.py +17 -0
  218. numpy-1.10.0.post2/numpy/distutils/npy_pkg_config.py +451 -0
  219. numpy-1.10.0.post2/numpy/distutils/system_info.py +2397 -0
  220. numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +12 -0
  221. numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +11 -0
  222. numpy-1.10.0.post2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +11 -0
  223. numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +13 -0
  224. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/__init__.py +1 -0
  225. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example.py +17 -0
  226. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example2.py +15 -0
  227. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_gnu.py +60 -0
  228. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_intel.py +36 -0
  229. numpy-1.10.0.post2/numpy/distutils/tests/test_misc_util.py +79 -0
  230. numpy-1.10.0.post2/numpy/distutils/tests/test_npy_pkg_config.py +102 -0
  231. numpy-1.10.0.post2/numpy/distutils/tests/test_system_info.py +209 -0
  232. numpy-1.10.0.post2/numpy/distutils/unixccompiler.py +125 -0
  233. numpy-1.10.0.post2/numpy/doc/byteswapping.py +156 -0
  234. numpy-1.10.0.post2/numpy/doc/creation.py +144 -0
  235. numpy-1.10.0.post2/numpy/doc/glossary.py +423 -0
  236. numpy-1.10.0.post2/numpy/doc/indexing.py +439 -0
  237. numpy-1.10.0.post2/numpy/doc/structured_arrays.py +290 -0
  238. numpy-1.10.0.post2/numpy/f2py/__init__.py +49 -0
  239. numpy-1.10.0.post2/numpy/f2py/__main__.py +25 -0
  240. numpy-1.10.0.post2/numpy/f2py/auxfuncs.py +858 -0
  241. numpy-1.10.0.post2/numpy/f2py/capi_maps.py +851 -0
  242. numpy-1.10.0.post2/numpy/f2py/cb_rules.py +554 -0
  243. numpy-1.10.0.post2/numpy/f2py/cfuncs.py +1261 -0
  244. numpy-1.10.0.post2/numpy/f2py/common_rules.py +150 -0
  245. numpy-1.10.0.post2/numpy/f2py/crackfortran.py +3314 -0
  246. numpy-1.10.0.post2/numpy/f2py/diagnose.py +156 -0
  247. numpy-1.10.0.post2/numpy/f2py/f2py2e.py +656 -0
  248. numpy-1.10.0.post2/numpy/f2py/f2py_testing.py +48 -0
  249. numpy-1.10.0.post2/numpy/f2py/f90mod_rules.py +272 -0
  250. numpy-1.10.0.post2/numpy/f2py/func2subr.py +299 -0
  251. numpy-1.10.0.post2/numpy/f2py/rules.py +1475 -0
  252. numpy-1.10.0.post2/numpy/f2py/setup.py +117 -0
  253. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.c +1037 -0
  254. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.h +162 -0
  255. numpy-1.10.0.post2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +223 -0
  256. numpy-1.10.0.post2/numpy/f2py/tests/test_array_from_pyobj.py +593 -0
  257. numpy-1.10.0.post2/numpy/f2py/tests/test_assumed_shape.py +35 -0
  258. numpy-1.10.0.post2/numpy/f2py/tests/test_callback.py +136 -0
  259. numpy-1.10.0.post2/numpy/f2py/tests/test_kind.py +36 -0
  260. numpy-1.10.0.post2/numpy/f2py/tests/test_mixed.py +40 -0
  261. numpy-1.10.0.post2/numpy/f2py/tests/test_regression.py +34 -0
  262. numpy-1.10.0.post2/numpy/f2py/tests/test_return_character.py +148 -0
  263. numpy-1.10.0.post2/numpy/f2py/tests/test_return_complex.py +170 -0
  264. numpy-1.10.0.post2/numpy/f2py/tests/test_return_integer.py +180 -0
  265. numpy-1.10.0.post2/numpy/f2py/tests/test_return_logical.py +189 -0
  266. numpy-1.10.0.post2/numpy/f2py/tests/test_return_real.py +206 -0
  267. numpy-1.10.0.post2/numpy/f2py/tests/test_size.py +44 -0
  268. numpy-1.10.0.post2/numpy/f2py/tests/util.py +367 -0
  269. numpy-1.10.0.post2/numpy/f2py/use_rules.py +115 -0
  270. numpy-1.10.0.post2/numpy/fft/fftpack.c +1501 -0
  271. numpy-1.10.0.post2/numpy/fft/fftpack.h +28 -0
  272. numpy-1.10.0.post2/numpy/fft/fftpack.py +1241 -0
  273. numpy-1.10.0.post2/numpy/fft/fftpack_litemodule.c +363 -0
  274. numpy-1.10.0.post2/numpy/fft/info.py +187 -0
  275. numpy-1.10.0.post2/numpy/fft/setup.py +19 -0
  276. numpy-1.10.0.post2/numpy/fft/tests/test_fftpack.py +166 -0
  277. numpy-1.10.0.post2/numpy/fft/tests/test_helper.py +78 -0
  278. numpy-1.10.0.post2/numpy/lib/_iotools.py +917 -0
  279. numpy-1.10.0.post2/numpy/lib/arraypad.py +1497 -0
  280. numpy-1.10.0.post2/numpy/lib/arraysetops.py +480 -0
  281. numpy-1.10.0.post2/numpy/lib/arrayterator.py +226 -0
  282. numpy-1.10.0.post2/numpy/lib/financial.py +737 -0
  283. numpy-1.10.0.post2/numpy/lib/format.py +814 -0
  284. numpy-1.10.0.post2/numpy/lib/function_base.py +4150 -0
  285. numpy-1.10.0.post2/numpy/lib/index_tricks.py +874 -0
  286. numpy-1.10.0.post2/numpy/lib/info.py +152 -0
  287. numpy-1.10.0.post2/numpy/lib/nanfunctions.py +1237 -0
  288. numpy-1.10.0.post2/numpy/lib/npyio.py +1992 -0
  289. numpy-1.10.0.post2/numpy/lib/polynomial.py +1277 -0
  290. numpy-1.10.0.post2/numpy/lib/recfunctions.py +1003 -0
  291. numpy-1.10.0.post2/numpy/lib/setup.py +12 -0
  292. numpy-1.10.0.post2/numpy/lib/shape_base.py +872 -0
  293. numpy-1.10.0.post2/numpy/lib/stride_tricks.py +200 -0
  294. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npy +0 -0
  295. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npz +0 -0
  296. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npy +0 -0
  297. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npz +0 -0
  298. numpy-1.10.0.post2/numpy/lib/tests/test__iotools.py +348 -0
  299. numpy-1.10.0.post2/numpy/lib/tests/test__version.py +70 -0
  300. numpy-1.10.0.post2/numpy/lib/tests/test_arraypad.py +1047 -0
  301. numpy-1.10.0.post2/numpy/lib/tests/test_arraysetops.py +309 -0
  302. numpy-1.10.0.post2/numpy/lib/tests/test_financial.py +163 -0
  303. numpy-1.10.0.post2/numpy/lib/tests/test_format.py +841 -0
  304. numpy-1.10.0.post2/numpy/lib/tests/test_function_base.py +2555 -0
  305. numpy-1.10.0.post2/numpy/lib/tests/test_index_tricks.py +326 -0
  306. numpy-1.10.0.post2/numpy/lib/tests/test_io.py +1916 -0
  307. numpy-1.10.0.post2/numpy/lib/tests/test_nanfunctions.py +707 -0
  308. numpy-1.10.0.post2/numpy/lib/tests/test_packbits.py +26 -0
  309. numpy-1.10.0.post2/numpy/lib/tests/test_polynomial.py +188 -0
  310. numpy-1.10.0.post2/numpy/lib/tests/test_recfunctions.py +734 -0
  311. numpy-1.10.0.post2/numpy/lib/tests/test_shape_base.py +386 -0
  312. numpy-1.10.0.post2/numpy/lib/tests/test_stride_tricks.py +405 -0
  313. numpy-1.10.0.post2/numpy/lib/tests/test_twodim_base.py +535 -0
  314. numpy-1.10.0.post2/numpy/lib/tests/test_type_check.py +332 -0
  315. numpy-1.10.0.post2/numpy/lib/twodim_base.py +1007 -0
  316. numpy-1.10.0.post2/numpy/lib/type_check.py +596 -0
  317. numpy-1.10.0.post2/numpy/lib/utils.py +1122 -0
  318. numpy-1.10.0.post2/numpy/linalg/lapack_lite/python_xerbla.c +46 -0
  319. numpy-1.10.0.post2/numpy/linalg/lapack_litemodule.c +358 -0
  320. numpy-1.10.0.post2/numpy/linalg/linalg.py +2406 -0
  321. numpy-1.10.0.post2/numpy/linalg/tests/test_build.py +59 -0
  322. numpy-1.10.0.post2/numpy/linalg/tests/test_linalg.py +1351 -0
  323. numpy-1.10.0.post2/numpy/linalg/tests/test_regression.py +95 -0
  324. numpy-1.10.0.post2/numpy/linalg/umath_linalg.c.src +3236 -0
  325. numpy-1.10.0.post2/numpy/ma/__init__.py +56 -0
  326. numpy-1.10.0.post2/numpy/ma/bench.py +131 -0
  327. numpy-1.10.0.post2/numpy/ma/core.py +7608 -0
  328. numpy-1.10.0.post2/numpy/ma/extras.py +1953 -0
  329. numpy-1.10.0.post2/numpy/ma/mrecords.py +796 -0
  330. numpy-1.10.0.post2/numpy/ma/setup.py +13 -0
  331. numpy-1.10.0.post2/numpy/ma/tests/test_core.py +4100 -0
  332. numpy-1.10.0.post2/numpy/ma/tests/test_extras.py +1132 -0
  333. numpy-1.10.0.post2/numpy/ma/tests/test_mrecords.py +520 -0
  334. numpy-1.10.0.post2/numpy/ma/tests/test_old_ma.py +879 -0
  335. numpy-1.10.0.post2/numpy/ma/tests/test_regression.py +80 -0
  336. numpy-1.10.0.post2/numpy/ma/tests/test_subclassing.py +338 -0
  337. numpy-1.10.0.post2/numpy/ma/testutils.py +289 -0
  338. numpy-1.10.0.post2/numpy/ma/timer_comparison.py +440 -0
  339. numpy-1.10.0.post2/numpy/matlib.py +358 -0
  340. numpy-1.10.0.post2/numpy/matrixlib/defmatrix.py +1232 -0
  341. numpy-1.10.0.post2/numpy/matrixlib/tests/test_defmatrix.py +449 -0
  342. numpy-1.10.0.post2/numpy/matrixlib/tests/test_multiarray.py +23 -0
  343. numpy-1.10.0.post2/numpy/matrixlib/tests/test_numeric.py +23 -0
  344. numpy-1.10.0.post2/numpy/matrixlib/tests/test_regression.py +37 -0
  345. numpy-1.10.0.post2/numpy/polynomial/_polybase.py +962 -0
  346. numpy-1.10.0.post2/numpy/polynomial/chebyshev.py +2056 -0
  347. numpy-1.10.0.post2/numpy/polynomial/hermite.py +1831 -0
  348. numpy-1.10.0.post2/numpy/polynomial/hermite_e.py +1828 -0
  349. numpy-1.10.0.post2/numpy/polynomial/laguerre.py +1780 -0
  350. numpy-1.10.0.post2/numpy/polynomial/legendre.py +1808 -0
  351. numpy-1.10.0.post2/numpy/polynomial/polyutils.py +403 -0
  352. numpy-1.10.0.post2/numpy/random/mtrand/distributions.c +912 -0
  353. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.c +34805 -0
  354. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.pyx +4766 -0
  355. numpy-1.10.0.post2/numpy/random/setup.py +61 -0
  356. numpy-1.10.0.post2/numpy/random/tests/test_random.py +723 -0
  357. numpy-1.10.0.post2/numpy/random/tests/test_regression.py +117 -0
  358. numpy-1.10.0.post2/numpy/setup.py +29 -0
  359. numpy-1.10.0.post2/numpy/testing/__init__.py +15 -0
  360. numpy-1.10.0.post2/numpy/testing/decorators.py +271 -0
  361. numpy-1.10.0.post2/numpy/testing/noseclasses.py +353 -0
  362. numpy-1.10.0.post2/numpy/testing/nosetester.py +511 -0
  363. numpy-1.10.0.post2/numpy/testing/print_coercion_tables.py +91 -0
  364. numpy-1.10.0.post2/numpy/testing/setup.py +20 -0
  365. numpy-1.10.0.post2/numpy/testing/tests/test_decorators.py +182 -0
  366. numpy-1.10.0.post2/numpy/testing/tests/test_utils.py +781 -0
  367. numpy-1.10.0.post2/numpy/testing/utils.py +1831 -0
  368. numpy-1.10.0.post2/numpy/tests/test_ctypeslib.py +106 -0
  369. numpy-1.10.0.post2/numpy/tests/test_matlib.py +55 -0
  370. numpy-1.10.0.post2/numpy/tests/test_scripts.py +69 -0
  371. numpy-1.10.0.post2/numpy/version.py +10 -0
  372. numpy-1.10.0.post2/setup.py +260 -0
  373. numpy-1.10.0.post2/site.cfg.example +193 -0
  374. numpy-1.10.0.post2/tmp.txt +789 -0
  375. numpy-1.10.0.post2/tools/swig/README +145 -0
  376. numpy-1.10.0.post2/tools/swig/numpy.i +3161 -0
  377. numpy-1.10.0.post2/tools/swig/test/Array.i +135 -0
  378. numpy-1.10.0.post2/tools/swig/test/ArrayZ.cxx +131 -0
  379. numpy-1.10.0.post2/tools/swig/test/ArrayZ.h +56 -0
  380. numpy-1.10.0.post2/tools/swig/test/Flat.cxx +36 -0
  381. numpy-1.10.0.post2/tools/swig/test/Flat.h +34 -0
  382. numpy-1.10.0.post2/tools/swig/test/Flat.i +36 -0
  383. numpy-1.10.0.post2/tools/swig/test/Makefile +37 -0
  384. numpy-1.10.0.post2/tools/swig/test/setup.py +71 -0
  385. numpy-1.10.0.post2/tools/swig/test/testArray.py +385 -0
  386. numpy-1.10.0.post2/tools/swig/test/testFarray.py +159 -0
  387. numpy-1.10.0.post2/tools/swig/test/testFlat.py +200 -0
  388. numpy-1.10.0.post2/tools/swig/test/testFortran.py +173 -0
  389. numpy-1.10.0.post2/tools/swig/test/testMatrix.py +362 -0
  390. numpy-1.10.0.post2/tools/swig/test/testSuperTensor.py +388 -0
  391. numpy-1.10.0.post2/tools/swig/test/testTensor.py +402 -0
  392. numpy-1.10.0.post2/tools/swig/test/testVector.py +381 -0
  393. numpy-1.9.2/INSTALL.txt +0 -138
  394. numpy-1.9.2/LICENSE.txt +0 -30
  395. numpy-1.9.2/MANIFEST.in +0 -26
  396. numpy-1.9.2/PKG-INFO +0 -39
  397. numpy-1.9.2/doc/scipy-sphinx-theme/.git +0 -1
  398. numpy-1.9.2/doc/source/conf.py +0 -331
  399. numpy-1.9.2/doc/source/dev/gitwash/branch_list.png +0 -0
  400. numpy-1.9.2/doc/source/dev/gitwash/branch_list_compare.png +0 -0
  401. numpy-1.9.2/doc/source/dev/gitwash/development_workflow.rst +0 -568
  402. numpy-1.9.2/doc/source/dev/gitwash/git_links.inc +0 -88
  403. numpy-1.9.2/doc/source/dev/gitwash/index.rst +0 -14
  404. numpy-1.9.2/doc/source/dev/index.rst +0 -10
  405. numpy-1.9.2/doc/source/reference/arrays.classes.rst +0 -427
  406. numpy-1.9.2/doc/source/reference/arrays.dtypes.rst +0 -534
  407. numpy-1.9.2/doc/source/reference/arrays.indexing.rst +0 -550
  408. numpy-1.9.2/doc/source/reference/arrays.interface.rst +0 -336
  409. numpy-1.9.2/doc/source/reference/arrays.ndarray.rst +0 -609
  410. numpy-1.9.2/doc/source/reference/arrays.scalars.rst +0 -291
  411. numpy-1.9.2/doc/source/reference/c-api.array.rst +0 -3362
  412. numpy-1.9.2/doc/source/reference/c-api.config.rst +0 -103
  413. numpy-1.9.2/doc/source/reference/c-api.coremath.rst +0 -420
  414. numpy-1.9.2/doc/source/reference/c-api.dtype.rst +0 -376
  415. numpy-1.9.2/doc/source/reference/c-api.generalized-ufuncs.rst +0 -171
  416. numpy-1.9.2/doc/source/reference/c-api.iterator.rst +0 -1298
  417. numpy-1.9.2/doc/source/reference/c-api.types-and-structures.rst +0 -1204
  418. numpy-1.9.2/doc/source/reference/c-api.ufunc.rst +0 -399
  419. numpy-1.9.2/doc/source/reference/index.rst +0 -44
  420. numpy-1.9.2/doc/source/reference/internals.code-explanations.rst +0 -666
  421. numpy-1.9.2/doc/source/reference/routines.array-manipulation.rst +0 -113
  422. numpy-1.9.2/doc/source/reference/routines.io.rst +0 -74
  423. numpy-1.9.2/doc/source/reference/routines.linalg.rst +0 -88
  424. numpy-1.9.2/doc/source/reference/routines.ma.rst +0 -405
  425. numpy-1.9.2/doc/source/reference/routines.sort.rst +0 -42
  426. numpy-1.9.2/doc/source/reference/routines.statistics.rst +0 -55
  427. numpy-1.9.2/doc/source/reference/swig.interface-file.rst +0 -1055
  428. numpy-1.9.2/doc/source/reference/swig.testing.rst +0 -166
  429. numpy-1.9.2/doc/source/reference/ufuncs.rst +0 -651
  430. numpy-1.9.2/doc/source/release.rst +0 -19
  431. numpy-1.9.2/doc/source/user/basics.io.genfromtxt.rst +0 -531
  432. numpy-1.9.2/doc/source/user/basics.rec.rst +0 -7
  433. numpy-1.9.2/doc/source/user/c-info.beyond-basics.rst +0 -560
  434. numpy-1.9.2/doc/source/user/c-info.how-to-extend.rst +0 -642
  435. numpy-1.9.2/doc/source/user/c-info.python-as-glue.rst +0 -1528
  436. numpy-1.9.2/doc/source/user/c-info.ufunc-tutorial.rst +0 -1211
  437. numpy-1.9.2/doc/source/user/install.rst +0 -180
  438. numpy-1.9.2/doc/sphinxext/.git +0 -1
  439. numpy-1.9.2/numpy/__init__.py +0 -216
  440. numpy-1.9.2/numpy/_import_tools.py +0 -348
  441. numpy-1.9.2/numpy/add_newdocs.py +0 -7518
  442. numpy-1.9.2/numpy/compat/_inspect.py +0 -221
  443. numpy-1.9.2/numpy/compat/py3k.py +0 -89
  444. numpy-1.9.2/numpy/compat/setup.py +0 -12
  445. numpy-1.9.2/numpy/core/__init__.py +0 -78
  446. numpy-1.9.2/numpy/core/_internal.py +0 -570
  447. numpy-1.9.2/numpy/core/_methods.py +0 -134
  448. numpy-1.9.2/numpy/core/arrayprint.py +0 -752
  449. numpy-1.9.2/numpy/core/blasdot/_dotblas.c +0 -1255
  450. numpy-1.9.2/numpy/core/blasdot/apple_sgemv_patch.c +0 -216
  451. numpy-1.9.2/numpy/core/blasdot/cblas.h +0 -578
  452. numpy-1.9.2/numpy/core/code_generators/cversions.txt +0 -31
  453. numpy-1.9.2/numpy/core/code_generators/generate_ufunc_api.py +0 -219
  454. numpy-1.9.2/numpy/core/code_generators/generate_umath.py +0 -972
  455. numpy-1.9.2/numpy/core/code_generators/numpy_api.py +0 -412
  456. numpy-1.9.2/numpy/core/code_generators/ufunc_docstrings.py +0 -3419
  457. numpy-1.9.2/numpy/core/defchararray.py +0 -2687
  458. numpy-1.9.2/numpy/core/fromnumeric.py +0 -2938
  459. numpy-1.9.2/numpy/core/function_base.py +0 -190
  460. numpy-1.9.2/numpy/core/getlimits.py +0 -306
  461. numpy-1.9.2/numpy/core/include/numpy/fenv/fenv.c +0 -38
  462. numpy-1.9.2/numpy/core/include/numpy/fenv/fenv.h +0 -224
  463. numpy-1.9.2/numpy/core/include/numpy/ndarrayobject.h +0 -237
  464. numpy-1.9.2/numpy/core/include/numpy/ndarraytypes.h +0 -1820
  465. numpy-1.9.2/numpy/core/include/numpy/npy_3kcompat.h +0 -506
  466. numpy-1.9.2/numpy/core/include/numpy/npy_common.h +0 -1038
  467. numpy-1.9.2/numpy/core/include/numpy/npy_cpu.h +0 -122
  468. numpy-1.9.2/numpy/core/include/numpy/npy_endian.h +0 -49
  469. numpy-1.9.2/numpy/core/include/numpy/npy_math.h +0 -479
  470. numpy-1.9.2/numpy/core/include/numpy/numpyconfig.h +0 -35
  471. numpy-1.9.2/numpy/core/machar.py +0 -338
  472. numpy-1.9.2/numpy/core/memmap.py +0 -308
  473. numpy-1.9.2/numpy/core/numeric.py +0 -2842
  474. numpy-1.9.2/numpy/core/numerictypes.py +0 -1042
  475. numpy-1.9.2/numpy/core/records.py +0 -804
  476. numpy-1.9.2/numpy/core/setup.py +0 -1016
  477. numpy-1.9.2/numpy/core/setup_common.py +0 -321
  478. numpy-1.9.2/numpy/core/shape_base.py +0 -277
  479. numpy-1.9.2/numpy/core/src/multiarray/alloc.c +0 -241
  480. numpy-1.9.2/numpy/core/src/multiarray/arrayobject.c +0 -1791
  481. numpy-1.9.2/numpy/core/src/multiarray/arraytypes.c.src +0 -4372
  482. numpy-1.9.2/numpy/core/src/multiarray/arraytypes.h +0 -13
  483. numpy-1.9.2/numpy/core/src/multiarray/buffer.c +0 -954
  484. numpy-1.9.2/numpy/core/src/multiarray/calculation.c +0 -1229
  485. numpy-1.9.2/numpy/core/src/multiarray/common.c +0 -798
  486. numpy-1.9.2/numpy/core/src/multiarray/common.h +0 -328
  487. numpy-1.9.2/numpy/core/src/multiarray/conversion_utils.c +0 -1240
  488. numpy-1.9.2/numpy/core/src/multiarray/convert.c +0 -589
  489. numpy-1.9.2/numpy/core/src/multiarray/convert_datatype.c +0 -2199
  490. numpy-1.9.2/numpy/core/src/multiarray/ctors.c +0 -3785
  491. numpy-1.9.2/numpy/core/src/multiarray/datetime.c +0 -3823
  492. numpy-1.9.2/numpy/core/src/multiarray/datetime_busday.c +0 -1322
  493. numpy-1.9.2/numpy/core/src/multiarray/datetime_busdaycal.c +0 -552
  494. numpy-1.9.2/numpy/core/src/multiarray/datetime_strings.c +0 -1772
  495. numpy-1.9.2/numpy/core/src/multiarray/descriptor.c +0 -3658
  496. numpy-1.9.2/numpy/core/src/multiarray/dtype_transfer.c +0 -4232
  497. numpy-1.9.2/numpy/core/src/multiarray/einsum.c.src +0 -3013
  498. numpy-1.9.2/numpy/core/src/multiarray/getset.c +0 -984
  499. numpy-1.9.2/numpy/core/src/multiarray/hashdescr.c +0 -319
  500. numpy-1.9.2/numpy/core/src/multiarray/item_selection.c +0 -2711
  501. numpy-1.9.2/numpy/core/src/multiarray/iterators.c +0 -2160
  502. numpy-1.9.2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +0 -1767
  503. numpy-1.9.2/numpy/core/src/multiarray/mapping.c +0 -3316
  504. numpy-1.9.2/numpy/core/src/multiarray/mapping.h +0 -73
  505. numpy-1.9.2/numpy/core/src/multiarray/methods.c +0 -2497
  506. numpy-1.9.2/numpy/core/src/multiarray/multiarray_tests.c.src +0 -977
  507. numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule.c +0 -4202
  508. numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule.h +0 -4
  509. numpy-1.9.2/numpy/core/src/multiarray/multiarraymodule_onefile.c +0 -58
  510. numpy-1.9.2/numpy/core/src/multiarray/nditer_api.c +0 -2809
  511. numpy-1.9.2/numpy/core/src/multiarray/nditer_constr.c +0 -3159
  512. numpy-1.9.2/numpy/core/src/multiarray/nditer_pywrap.c +0 -2492
  513. numpy-1.9.2/numpy/core/src/multiarray/number.c +0 -1057
  514. numpy-1.9.2/numpy/core/src/multiarray/number.h +0 -76
  515. numpy-1.9.2/numpy/core/src/multiarray/numpymemoryview.c +0 -309
  516. numpy-1.9.2/numpy/core/src/multiarray/numpyos.c +0 -683
  517. numpy-1.9.2/numpy/core/src/multiarray/scalarapi.c +0 -861
  518. numpy-1.9.2/numpy/core/src/multiarray/scalartypes.c.src +0 -4270
  519. numpy-1.9.2/numpy/core/src/multiarray/scalartypes.h +0 -52
  520. numpy-1.9.2/numpy/core/src/multiarray/shape.c +0 -1141
  521. numpy-1.9.2/numpy/core/src/multiarray/ucsnarrow.c +0 -173
  522. numpy-1.9.2/numpy/core/src/npymath/ieee754.c.src +0 -814
  523. numpy-1.9.2/numpy/core/src/npymath/npy_math.c.src +0 -527
  524. numpy-1.9.2/numpy/core/src/npymath/npy_math_complex.c.src +0 -291
  525. numpy-1.9.2/numpy/core/src/npymath/npy_math_private.h +0 -539
  526. numpy-1.9.2/numpy/core/src/npysort/heapsort.c.src +0 -341
  527. numpy-1.9.2/numpy/core/src/npysort/mergesort.c.src +0 -428
  528. numpy-1.9.2/numpy/core/src/npysort/npysort_common.h +0 -367
  529. numpy-1.9.2/numpy/core/src/npysort/quicksort.c.src +0 -363
  530. numpy-1.9.2/numpy/core/src/npysort/selection.c.src +0 -474
  531. numpy-1.9.2/numpy/core/src/private/npy_config.h +0 -44
  532. numpy-1.9.2/numpy/core/src/private/npy_partition.h.src +0 -138
  533. numpy-1.9.2/numpy/core/src/private/npy_sort.h +0 -194
  534. numpy-1.9.2/numpy/core/src/private/scalarmathmodule.h.src +0 -42
  535. numpy-1.9.2/numpy/core/src/private/ufunc_override.h +0 -384
  536. numpy-1.9.2/numpy/core/src/scalarmathmodule.c.src +0 -1980
  537. numpy-1.9.2/numpy/core/src/umath/funcs.inc.src +0 -715
  538. numpy-1.9.2/numpy/core/src/umath/loops.c.src +0 -2654
  539. numpy-1.9.2/numpy/core/src/umath/loops.h.src +0 -501
  540. numpy-1.9.2/numpy/core/src/umath/operand_flag_tests.c.src +0 -105
  541. numpy-1.9.2/numpy/core/src/umath/simd.inc.src +0 -881
  542. numpy-1.9.2/numpy/core/src/umath/test_rational.c.src +0 -1404
  543. numpy-1.9.2/numpy/core/src/umath/ufunc_object.c +0 -5520
  544. numpy-1.9.2/numpy/core/src/umath/ufunc_type_resolution.c +0 -2164
  545. numpy-1.9.2/numpy/core/src/umath/umath_tests.c.src +0 -341
  546. numpy-1.9.2/numpy/core/src/umath/umathmodule.c +0 -561
  547. numpy-1.9.2/numpy/core/src/umath/umathmodule_onefile.c +0 -6
  548. numpy-1.9.2/numpy/core/tests/test_abc.py +0 -45
  549. numpy-1.9.2/numpy/core/tests/test_api.py +0 -514
  550. numpy-1.9.2/numpy/core/tests/test_arrayprint.py +0 -167
  551. numpy-1.9.2/numpy/core/tests/test_blasdot.py +0 -249
  552. numpy-1.9.2/numpy/core/tests/test_datetime.py +0 -1781
  553. numpy-1.9.2/numpy/core/tests/test_defchararray.py +0 -642
  554. numpy-1.9.2/numpy/core/tests/test_deprecations.py +0 -512
  555. numpy-1.9.2/numpy/core/tests/test_dtype.py +0 -542
  556. numpy-1.9.2/numpy/core/tests/test_einsum.py +0 -583
  557. numpy-1.9.2/numpy/core/tests/test_errstate.py +0 -51
  558. numpy-1.9.2/numpy/core/tests/test_function_base.py +0 -111
  559. numpy-1.9.2/numpy/core/tests/test_getlimits.py +0 -86
  560. numpy-1.9.2/numpy/core/tests/test_half.py +0 -439
  561. numpy-1.9.2/numpy/core/tests/test_indexerrors.py +0 -127
  562. numpy-1.9.2/numpy/core/tests/test_indexing.py +0 -1014
  563. numpy-1.9.2/numpy/core/tests/test_item_selection.py +0 -70
  564. numpy-1.9.2/numpy/core/tests/test_machar.py +0 -30
  565. numpy-1.9.2/numpy/core/tests/test_memmap.py +0 -127
  566. numpy-1.9.2/numpy/core/tests/test_multiarray.py +0 -4645
  567. numpy-1.9.2/numpy/core/tests/test_multiarray_assignment.py +0 -80
  568. numpy-1.9.2/numpy/core/tests/test_nditer.py +0 -2630
  569. numpy-1.9.2/numpy/core/tests/test_numeric.py +0 -2117
  570. numpy-1.9.2/numpy/core/tests/test_numerictypes.py +0 -377
  571. numpy-1.9.2/numpy/core/tests/test_print.py +0 -245
  572. numpy-1.9.2/numpy/core/tests/test_records.py +0 -185
  573. numpy-1.9.2/numpy/core/tests/test_regression.py +0 -2108
  574. numpy-1.9.2/numpy/core/tests/test_scalarinherit.py +0 -34
  575. numpy-1.9.2/numpy/core/tests/test_scalarmath.py +0 -275
  576. numpy-1.9.2/numpy/core/tests/test_shape_base.py +0 -250
  577. numpy-1.9.2/numpy/core/tests/test_ufunc.py +0 -1153
  578. numpy-1.9.2/numpy/core/tests/test_umath.py +0 -1695
  579. numpy-1.9.2/numpy/core/tests/test_umath_complex.py +0 -537
  580. numpy-1.9.2/numpy/core/tests/test_unicode.py +0 -357
  581. numpy-1.9.2/numpy/distutils/__init__.py +0 -39
  582. numpy-1.9.2/numpy/distutils/ccompiler.py +0 -656
  583. numpy-1.9.2/numpy/distutils/command/autodist.py +0 -43
  584. numpy-1.9.2/numpy/distutils/command/build.py +0 -39
  585. numpy-1.9.2/numpy/distutils/command/build_clib.py +0 -284
  586. numpy-1.9.2/numpy/distutils/command/build_ext.py +0 -503
  587. numpy-1.9.2/numpy/distutils/command/config.py +0 -476
  588. numpy-1.9.2/numpy/distutils/exec_command.py +0 -618
  589. numpy-1.9.2/numpy/distutils/fcompiler/compaq.py +0 -128
  590. numpy-1.9.2/numpy/distutils/fcompiler/gnu.py +0 -390
  591. numpy-1.9.2/numpy/distutils/fcompiler/intel.py +0 -205
  592. numpy-1.9.2/numpy/distutils/fcompiler/pg.py +0 -60
  593. numpy-1.9.2/numpy/distutils/fcompiler/sun.py +0 -52
  594. numpy-1.9.2/numpy/distutils/intelccompiler.py +0 -45
  595. numpy-1.9.2/numpy/distutils/lib2def.py +0 -116
  596. numpy-1.9.2/numpy/distutils/mingw32ccompiler.py +0 -582
  597. numpy-1.9.2/numpy/distutils/misc_util.py +0 -2271
  598. numpy-1.9.2/numpy/distutils/npy_pkg_config.py +0 -464
  599. numpy-1.9.2/numpy/distutils/system_info.py +0 -2319
  600. numpy-1.9.2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +0 -13
  601. numpy-1.9.2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +0 -12
  602. numpy-1.9.2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +0 -12
  603. numpy-1.9.2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +0 -14
  604. numpy-1.9.2/numpy/distutils/tests/swig_ext/tests/test_example.py +0 -18
  605. numpy-1.9.2/numpy/distutils/tests/swig_ext/tests/test_example2.py +0 -16
  606. numpy-1.9.2/numpy/distutils/tests/test_fcompiler_gnu.py +0 -53
  607. numpy-1.9.2/numpy/distutils/tests/test_fcompiler_intel.py +0 -36
  608. numpy-1.9.2/numpy/distutils/tests/test_misc_util.py +0 -75
  609. numpy-1.9.2/numpy/distutils/tests/test_npy_pkg_config.py +0 -98
  610. numpy-1.9.2/numpy/distutils/unixccompiler.py +0 -113
  611. numpy-1.9.2/numpy/doc/byteswapping.py +0 -147
  612. numpy-1.9.2/numpy/doc/creation.py +0 -144
  613. numpy-1.9.2/numpy/doc/glossary.py +0 -418
  614. numpy-1.9.2/numpy/doc/indexing.py +0 -437
  615. numpy-1.9.2/numpy/doc/structured_arrays.py +0 -223
  616. numpy-1.9.2/numpy/f2py/__init__.py +0 -49
  617. numpy-1.9.2/numpy/f2py/auxfuncs.py +0 -711
  618. numpy-1.9.2/numpy/f2py/capi_maps.py +0 -773
  619. numpy-1.9.2/numpy/f2py/cb_rules.py +0 -539
  620. numpy-1.9.2/numpy/f2py/cfuncs.py +0 -1224
  621. numpy-1.9.2/numpy/f2py/common_rules.py +0 -132
  622. numpy-1.9.2/numpy/f2py/crackfortran.py +0 -2870
  623. numpy-1.9.2/numpy/f2py/diagnose.py +0 -149
  624. numpy-1.9.2/numpy/f2py/f2py2e.py +0 -598
  625. numpy-1.9.2/numpy/f2py/f2py_testing.py +0 -46
  626. numpy-1.9.2/numpy/f2py/f90mod_rules.py +0 -246
  627. numpy-1.9.2/numpy/f2py/func2subr.py +0 -291
  628. numpy-1.9.2/numpy/f2py/rules.py +0 -1448
  629. numpy-1.9.2/numpy/f2py/setup.py +0 -129
  630. numpy-1.9.2/numpy/f2py/src/fortranobject.c +0 -972
  631. numpy-1.9.2/numpy/f2py/src/fortranobject.h +0 -162
  632. numpy-1.9.2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +0 -223
  633. numpy-1.9.2/numpy/f2py/tests/test_array_from_pyobj.py +0 -559
  634. numpy-1.9.2/numpy/f2py/tests/test_assumed_shape.py +0 -37
  635. numpy-1.9.2/numpy/f2py/tests/test_callback.py +0 -132
  636. numpy-1.9.2/numpy/f2py/tests/test_kind.py +0 -36
  637. numpy-1.9.2/numpy/f2py/tests/test_mixed.py +0 -41
  638. numpy-1.9.2/numpy/f2py/tests/test_regression.py +0 -32
  639. numpy-1.9.2/numpy/f2py/tests/test_return_character.py +0 -142
  640. numpy-1.9.2/numpy/f2py/tests/test_return_complex.py +0 -169
  641. numpy-1.9.2/numpy/f2py/tests/test_return_integer.py +0 -178
  642. numpy-1.9.2/numpy/f2py/tests/test_return_logical.py +0 -187
  643. numpy-1.9.2/numpy/f2py/tests/test_return_real.py +0 -203
  644. numpy-1.9.2/numpy/f2py/tests/test_size.py +0 -47
  645. numpy-1.9.2/numpy/f2py/tests/util.py +0 -353
  646. numpy-1.9.2/numpy/f2py/use_rules.py +0 -109
  647. numpy-1.9.2/numpy/fft/fftpack.c +0 -1501
  648. numpy-1.9.2/numpy/fft/fftpack.h +0 -28
  649. numpy-1.9.2/numpy/fft/fftpack.py +0 -1169
  650. numpy-1.9.2/numpy/fft/fftpack_litemodule.c +0 -371
  651. numpy-1.9.2/numpy/fft/info.py +0 -179
  652. numpy-1.9.2/numpy/fft/setup.py +0 -20
  653. numpy-1.9.2/numpy/fft/tests/test_fftpack.py +0 -75
  654. numpy-1.9.2/numpy/fft/tests/test_helper.py +0 -78
  655. numpy-1.9.2/numpy/lib/_iotools.py +0 -891
  656. numpy-1.9.2/numpy/lib/arraypad.py +0 -1475
  657. numpy-1.9.2/numpy/lib/arraysetops.py +0 -464
  658. numpy-1.9.2/numpy/lib/arrayterator.py +0 -226
  659. numpy-1.9.2/numpy/lib/financial.py +0 -737
  660. numpy-1.9.2/numpy/lib/format.py +0 -771
  661. numpy-1.9.2/numpy/lib/function_base.py +0 -3884
  662. numpy-1.9.2/numpy/lib/index_tricks.py +0 -869
  663. numpy-1.9.2/numpy/lib/info.py +0 -151
  664. numpy-1.9.2/numpy/lib/nanfunctions.py +0 -1158
  665. numpy-1.9.2/numpy/lib/npyio.py +0 -1918
  666. numpy-1.9.2/numpy/lib/polynomial.py +0 -1271
  667. numpy-1.9.2/numpy/lib/recfunctions.py +0 -1003
  668. numpy-1.9.2/numpy/lib/setup.py +0 -23
  669. numpy-1.9.2/numpy/lib/shape_base.py +0 -865
  670. numpy-1.9.2/numpy/lib/src/_compiled_base.c +0 -1761
  671. numpy-1.9.2/numpy/lib/stride_tricks.py +0 -123
  672. numpy-1.9.2/numpy/lib/tests/test__iotools.py +0 -326
  673. numpy-1.9.2/numpy/lib/tests/test__version.py +0 -57
  674. numpy-1.9.2/numpy/lib/tests/test_arraypad.py +0 -560
  675. numpy-1.9.2/numpy/lib/tests/test_arraysetops.py +0 -301
  676. numpy-1.9.2/numpy/lib/tests/test_financial.py +0 -160
  677. numpy-1.9.2/numpy/lib/tests/test_format.py +0 -716
  678. numpy-1.9.2/numpy/lib/tests/test_function_base.py +0 -2145
  679. numpy-1.9.2/numpy/lib/tests/test_index_tricks.py +0 -289
  680. numpy-1.9.2/numpy/lib/tests/test_io.py +0 -1754
  681. numpy-1.9.2/numpy/lib/tests/test_nanfunctions.py +0 -774
  682. numpy-1.9.2/numpy/lib/tests/test_polynomial.py +0 -177
  683. numpy-1.9.2/numpy/lib/tests/test_recfunctions.py +0 -705
  684. numpy-1.9.2/numpy/lib/tests/test_shape_base.py +0 -368
  685. numpy-1.9.2/numpy/lib/tests/test_stride_tricks.py +0 -238
  686. numpy-1.9.2/numpy/lib/tests/test_twodim_base.py +0 -504
  687. numpy-1.9.2/numpy/lib/tests/test_type_check.py +0 -328
  688. numpy-1.9.2/numpy/lib/twodim_base.py +0 -1003
  689. numpy-1.9.2/numpy/lib/type_check.py +0 -605
  690. numpy-1.9.2/numpy/lib/utils.py +0 -1176
  691. numpy-1.9.2/numpy/linalg/lapack_lite/python_xerbla.c +0 -47
  692. numpy-1.9.2/numpy/linalg/lapack_litemodule.c +0 -362
  693. numpy-1.9.2/numpy/linalg/linalg.py +0 -2136
  694. numpy-1.9.2/numpy/linalg/tests/test_build.py +0 -53
  695. numpy-1.9.2/numpy/linalg/tests/test_linalg.py +0 -1156
  696. numpy-1.9.2/numpy/linalg/tests/test_regression.py +0 -90
  697. numpy-1.9.2/numpy/linalg/umath_linalg.c.src +0 -3210
  698. numpy-1.9.2/numpy/ma/__init__.py +0 -58
  699. numpy-1.9.2/numpy/ma/bench.py +0 -166
  700. numpy-1.9.2/numpy/ma/core.py +0 -7374
  701. numpy-1.9.2/numpy/ma/extras.py +0 -1932
  702. numpy-1.9.2/numpy/ma/mrecords.py +0 -734
  703. numpy-1.9.2/numpy/ma/setup.py +0 -20
  704. numpy-1.9.2/numpy/ma/tests/test_core.py +0 -3706
  705. numpy-1.9.2/numpy/ma/tests/test_extras.py +0 -954
  706. numpy-1.9.2/numpy/ma/tests/test_mrecords.py +0 -521
  707. numpy-1.9.2/numpy/ma/tests/test_old_ma.py +0 -869
  708. numpy-1.9.2/numpy/ma/tests/test_regression.py +0 -75
  709. numpy-1.9.2/numpy/ma/tests/test_subclassing.py +0 -236
  710. numpy-1.9.2/numpy/ma/testutils.py +0 -240
  711. numpy-1.9.2/numpy/ma/timer_comparison.py +0 -459
  712. numpy-1.9.2/numpy/matlib.py +0 -358
  713. numpy-1.9.2/numpy/matrixlib/defmatrix.py +0 -1094
  714. numpy-1.9.2/numpy/matrixlib/tests/test_defmatrix.py +0 -400
  715. numpy-1.9.2/numpy/matrixlib/tests/test_multiarray.py +0 -18
  716. numpy-1.9.2/numpy/matrixlib/tests/test_numeric.py +0 -10
  717. numpy-1.9.2/numpy/matrixlib/tests/test_regression.py +0 -34
  718. numpy-1.9.2/numpy/polynomial/_polybase.py +0 -962
  719. numpy-1.9.2/numpy/polynomial/chebyshev.py +0 -2056
  720. numpy-1.9.2/numpy/polynomial/hermite.py +0 -1789
  721. numpy-1.9.2/numpy/polynomial/hermite_e.py +0 -1786
  722. numpy-1.9.2/numpy/polynomial/laguerre.py +0 -1781
  723. numpy-1.9.2/numpy/polynomial/legendre.py +0 -1809
  724. numpy-1.9.2/numpy/polynomial/polytemplate.py +0 -927
  725. numpy-1.9.2/numpy/polynomial/polyutils.py +0 -403
  726. numpy-1.9.2/numpy/random/mtrand/distributions.c +0 -892
  727. numpy-1.9.2/numpy/random/mtrand/mtrand.c +0 -31204
  728. numpy-1.9.2/numpy/random/mtrand/mtrand.pyx +0 -4706
  729. numpy-1.9.2/numpy/random/setup.py +0 -74
  730. numpy-1.9.2/numpy/random/tests/test_random.py +0 -707
  731. numpy-1.9.2/numpy/random/tests/test_regression.py +0 -86
  732. numpy-1.9.2/numpy/setup.py +0 -27
  733. numpy-1.9.2/numpy/testing/__init__.py +0 -16
  734. numpy-1.9.2/numpy/testing/decorators.py +0 -271
  735. numpy-1.9.2/numpy/testing/noseclasses.py +0 -353
  736. numpy-1.9.2/numpy/testing/nosetester.py +0 -504
  737. numpy-1.9.2/numpy/testing/print_coercion_tables.py +0 -89
  738. numpy-1.9.2/numpy/testing/setup.py +0 -20
  739. numpy-1.9.2/numpy/testing/tests/test_decorators.py +0 -185
  740. numpy-1.9.2/numpy/testing/tests/test_utils.py +0 -558
  741. numpy-1.9.2/numpy/testing/utils.py +0 -1715
  742. numpy-1.9.2/numpy/tests/test_ctypeslib.py +0 -102
  743. numpy-1.9.2/numpy/tests/test_matlib.py +0 -55
  744. numpy-1.9.2/numpy/version.py +0 -10
  745. numpy-1.9.2/setup.py +0 -251
  746. numpy-1.9.2/site.cfg.example +0 -157
  747. numpy-1.9.2/tools/swig/README +0 -135
  748. numpy-1.9.2/tools/swig/numpy.i +0 -3085
  749. numpy-1.9.2/tools/swig/test/Array.i +0 -102
  750. numpy-1.9.2/tools/swig/test/Makefile +0 -34
  751. numpy-1.9.2/tools/swig/test/setup.py +0 -64
  752. numpy-1.9.2/tools/swig/test/testArray.py +0 -284
  753. numpy-1.9.2/tools/swig/test/testFarray.py +0 -159
  754. numpy-1.9.2/tools/swig/test/testFortran.py +0 -173
  755. numpy-1.9.2/tools/swig/test/testMatrix.py +0 -362
  756. numpy-1.9.2/tools/swig/test/testSuperTensor.py +0 -388
  757. numpy-1.9.2/tools/swig/test/testTensor.py +0 -402
  758. numpy-1.9.2/tools/swig/test/testVector.py +0 -381
  759. {numpy-1.9.2 → numpy-1.10.0.post2}/BENTO_BUILD.txt +0 -0
  760. {numpy-1.9.2 → numpy-1.10.0.post2}/COMPATIBILITY +0 -0
  761. {numpy-1.9.2 → numpy-1.10.0.post2}/DEV_README.txt +0 -0
  762. {numpy-1.9.2 → numpy-1.10.0.post2}/README.txt +0 -0
  763. {numpy-1.9.2 → numpy-1.10.0.post2}/THANKS.txt +0 -0
  764. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/Makefile +0 -0
  765. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/BUGS.txt +0 -0
  766. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/FAQ.txt +0 -0
  767. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/HISTORY.txt +0 -0
  768. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Makefile +0 -0
  769. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/OLDNEWS.txt +0 -0
  770. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/README.txt +0 -0
  771. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-1.x.txt +0 -0
  772. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-2.x.txt +0 -0
  773. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-3.x.txt +0 -0
  774. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/Release-4.x.txt +0 -0
  775. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/TESTING.txt +0 -0
  776. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/THANKS.txt +0 -0
  777. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/TODO.txt +0 -0
  778. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/apps.tex +0 -0
  779. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/bugs.tex +0 -0
  780. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/collectinput.py +0 -0
  781. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/commands.tex +0 -0
  782. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/default.css +0 -0
  783. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/docutils.conf +0 -0
  784. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/arr.f +0 -0
  785. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/bar.f +0 -0
  786. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foo.f +0 -0
  787. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar-smart.f90 +0 -0
  788. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar.f90 +0 -0
  789. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/foobarmodule.tex +0 -0
  790. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/ex1/runme +0 -0
  791. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2py.1 +0 -0
  792. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2py2e.tex +0 -0
  793. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/README.txt +0 -0
  794. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/aerostructure.jpg +0 -0
  795. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/flow.jpg +0 -0
  796. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_html.sh +0 -0
  797. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_pdf.sh +0 -0
  798. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_ps.sh +0 -0
  799. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1.f +0 -0
  800. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1mess.txt +0 -0
  801. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1session.txt +0 -0
  802. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foo.pyf +0 -0
  803. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foom.pyf +0 -0
  804. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/structure.jpg +0 -0
  805. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/fortranobject.tex +0 -0
  806. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/hello.f +0 -0
  807. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/index.html +0 -0
  808. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/intro.tex +0 -0
  809. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/array_from_pyobj.c +0 -0
  810. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/bar.c +0 -0
  811. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/foo.f +0 -0
  812. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/fortran_array_from_pyobj.txt +0 -0
  813. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/fun.pyf +0 -0
  814. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/run.pyf +0 -0
  815. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarray/transpose.txt +0 -0
  816. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/multiarrays.txt +0 -0
  817. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/notes.tex +0 -0
  818. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/oldnews.html +0 -0
  819. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/options.tex +0 -0
  820. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/pyforttest.pyf +0 -0
  821. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/pytest.py +0 -0
  822. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/python9.tex +0 -0
  823. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/signaturefile.tex +0 -0
  824. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/simple.f +0 -0
  825. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/simple_session.dat +0 -0
  826. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/using_F_compiler.txt +0 -0
  827. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/f2py/win32_notes.txt +0 -0
  828. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/postprocess.py +0 -0
  829. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.3.0-notes.rst +0 -0
  830. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.4.0-notes.rst +0 -0
  831. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.5.0-notes.rst +0 -0
  832. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.0-notes.rst +0 -0
  833. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.1-notes.rst +0 -0
  834. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.6.2-notes.rst +0 -0
  835. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.0-notes.rst +0 -0
  836. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.1-notes.rst +0 -0
  837. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.7.2-notes.rst +0 -0
  838. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.0-notes.rst +0 -0
  839. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.1-notes.rst +0 -0
  840. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.8.2-notes.rst +0 -0
  841. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.0-notes.rst +0 -0
  842. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.1-notes.rst +0 -0
  843. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/1.9.2-notes.rst +0 -0
  844. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/release/time_based_proposal.rst +0 -0
  845. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.gitignore +0 -0
  846. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/Makefile +0 -0
  847. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/README.rst +0 -0
  848. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_static/scipyshiny_small.png +0 -0
  849. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/layout.html +0 -0
  850. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/searchbox.html +0 -0
  851. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/sourcelink.html +0 -0
  852. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/extend.css +0 -0
  853. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/pygments.css +0 -0
  854. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/scipy-central.css +0 -0
  855. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-bootstrap.css +0 -0
  856. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-extend.css +0 -0
  857. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/all-icons.svg +0 -0
  858. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/contents.png +0 -0
  859. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/create-new-account-icon.png +0 -0
  860. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon-shrunk.png +0 -0
  861. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.png +0 -0
  862. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.svg +0 -0
  863. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiniest.png +0 -0
  864. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiny.png +0 -0
  865. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon.png +0 -0
  866. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ad.png +0 -0
  867. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ae.png +0 -0
  868. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-af.png +0 -0
  869. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ag.png +0 -0
  870. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ai.png +0 -0
  871. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-al.png +0 -0
  872. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-am.png +0 -0
  873. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ao.png +0 -0
  874. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aq.png +0 -0
  875. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ar.png +0 -0
  876. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-as.png +0 -0
  877. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-at.png +0 -0
  878. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-au.png +0 -0
  879. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aw.png +0 -0
  880. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-az.png +0 -0
  881. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ba.png +0 -0
  882. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bb.png +0 -0
  883. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bd.png +0 -0
  884. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-be.png +0 -0
  885. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bf.png +0 -0
  886. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bg.png +0 -0
  887. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bh.png +0 -0
  888. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bi.png +0 -0
  889. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bj.png +0 -0
  890. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bl.png +0 -0
  891. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bm.png +0 -0
  892. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bn.png +0 -0
  893. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bo.png +0 -0
  894. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-br.png +0 -0
  895. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bs.png +0 -0
  896. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bt.png +0 -0
  897. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bw.png +0 -0
  898. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-by.png +0 -0
  899. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bz.png +0 -0
  900. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ca.png +0 -0
  901. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cc.png +0 -0
  902. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cd.png +0 -0
  903. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cf.png +0 -0
  904. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cg.png +0 -0
  905. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ch.png +0 -0
  906. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ci.png +0 -0
  907. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ck.png +0 -0
  908. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cl.png +0 -0
  909. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cm.png +0 -0
  910. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cn.png +0 -0
  911. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-co.png +0 -0
  912. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cr.png +0 -0
  913. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cu.png +0 -0
  914. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cv.png +0 -0
  915. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cw.png +0 -0
  916. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cx.png +0 -0
  917. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cy.png +0 -0
  918. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cz.png +0 -0
  919. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-de.png +0 -0
  920. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dj.png +0 -0
  921. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dk.png +0 -0
  922. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dm.png +0 -0
  923. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-do.png +0 -0
  924. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dz.png +0 -0
  925. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ec.png +0 -0
  926. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ee.png +0 -0
  927. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-eg.png +0 -0
  928. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-er.png +0 -0
  929. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-es.png +0 -0
  930. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-et.png +0 -0
  931. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fi.png +0 -0
  932. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fj.png +0 -0
  933. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fk.png +0 -0
  934. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fm.png +0 -0
  935. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fo.png +0 -0
  936. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fr.png +0 -0
  937. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ga.png +0 -0
  938. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gb.png +0 -0
  939. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gd.png +0 -0
  940. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ge.png +0 -0
  941. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gf.png +0 -0
  942. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gg.png +0 -0
  943. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gh.png +0 -0
  944. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gi.png +0 -0
  945. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gl.png +0 -0
  946. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gm.png +0 -0
  947. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gn.png +0 -0
  948. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gq.png +0 -0
  949. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gr.png +0 -0
  950. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gs.png +0 -0
  951. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gt.png +0 -0
  952. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gu.png +0 -0
  953. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gw.png +0 -0
  954. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gy.png +0 -0
  955. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hk.png +0 -0
  956. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hm.png +0 -0
  957. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hn.png +0 -0
  958. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hr.png +0 -0
  959. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ht.png +0 -0
  960. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hu.png +0 -0
  961. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-id.png +0 -0
  962. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ie.png +0 -0
  963. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-il.png +0 -0
  964. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-im.png +0 -0
  965. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-in.png +0 -0
  966. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-io.png +0 -0
  967. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-iq.png +0 -0
  968. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ir.png +0 -0
  969. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-is.png +0 -0
  970. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-it.png +0 -0
  971. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-je.png +0 -0
  972. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jm.png +0 -0
  973. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jo.png +0 -0
  974. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jp.png +0 -0
  975. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ke.png +0 -0
  976. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kg.png +0 -0
  977. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kh.png +0 -0
  978. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ki.png +0 -0
  979. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-km.png +0 -0
  980. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kn.png +0 -0
  981. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kp.png +0 -0
  982. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kr.png +0 -0
  983. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kw.png +0 -0
  984. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ky.png +0 -0
  985. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kz.png +0 -0
  986. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-la.png +0 -0
  987. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lb.png +0 -0
  988. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lc.png +0 -0
  989. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-li.png +0 -0
  990. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lk.png +0 -0
  991. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lr.png +0 -0
  992. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ls.png +0 -0
  993. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lt.png +0 -0
  994. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lu.png +0 -0
  995. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lv.png +0 -0
  996. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ly.png +0 -0
  997. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ma.png +0 -0
  998. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mc.png +0 -0
  999. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-md.png +0 -0
  1000. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-me.png +0 -0
  1001. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mf.png +0 -0
  1002. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mg.png +0 -0
  1003. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mh.png +0 -0
  1004. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mk.png +0 -0
  1005. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ml.png +0 -0
  1006. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mm.png +0 -0
  1007. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mn.png +0 -0
  1008. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mo.png +0 -0
  1009. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mp.png +0 -0
  1010. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mq.png +0 -0
  1011. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mr.png +0 -0
  1012. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ms.png +0 -0
  1013. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mt.png +0 -0
  1014. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mu.png +0 -0
  1015. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mv.png +0 -0
  1016. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mw.png +0 -0
  1017. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mx.png +0 -0
  1018. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-my.png +0 -0
  1019. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mz.png +0 -0
  1020. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-na.png +0 -0
  1021. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nc.png +0 -0
  1022. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ne.png +0 -0
  1023. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nf.png +0 -0
  1024. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ng.png +0 -0
  1025. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ni.png +0 -0
  1026. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nl.png +0 -0
  1027. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-no.png +0 -0
  1028. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-np.png +0 -0
  1029. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nr.png +0 -0
  1030. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nu.png +0 -0
  1031. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nz.png +0 -0
  1032. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-om.png +0 -0
  1033. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pa.png +0 -0
  1034. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pe.png +0 -0
  1035. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pf.png +0 -0
  1036. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pg.png +0 -0
  1037. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ph.png +0 -0
  1038. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pk.png +0 -0
  1039. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pl.png +0 -0
  1040. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pm.png +0 -0
  1041. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pn.png +0 -0
  1042. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pr.png +0 -0
  1043. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ps.png +0 -0
  1044. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pt.png +0 -0
  1045. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pw.png +0 -0
  1046. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-py.png +0 -0
  1047. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-qa.png +0 -0
  1048. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-re.png +0 -0
  1049. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ro.png +0 -0
  1050. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rs.png +0 -0
  1051. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ru.png +0 -0
  1052. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rw.png +0 -0
  1053. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sa.png +0 -0
  1054. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sb.png +0 -0
  1055. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sc.png +0 -0
  1056. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sd.png +0 -0
  1057. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-se.png +0 -0
  1058. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sg.png +0 -0
  1059. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sh.png +0 -0
  1060. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-si.png +0 -0
  1061. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sj.png +0 -0
  1062. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sk.png +0 -0
  1063. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sl.png +0 -0
  1064. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sm.png +0 -0
  1065. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sn.png +0 -0
  1066. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-so.png +0 -0
  1067. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sr.png +0 -0
  1068. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-st.png +0 -0
  1069. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sv.png +0 -0
  1070. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sy.png +0 -0
  1071. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sz.png +0 -0
  1072. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tc.png +0 -0
  1073. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-td.png +0 -0
  1074. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tf.png +0 -0
  1075. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tg.png +0 -0
  1076. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-th.png +0 -0
  1077. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tj.png +0 -0
  1078. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tk.png +0 -0
  1079. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tl.png +0 -0
  1080. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tm.png +0 -0
  1081. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tn.png +0 -0
  1082. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-to.png +0 -0
  1083. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tr.png +0 -0
  1084. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tt.png +0 -0
  1085. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tv.png +0 -0
  1086. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tw.png +0 -0
  1087. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tz.png +0 -0
  1088. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ua.png +0 -0
  1089. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ug.png +0 -0
  1090. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-um.png +0 -0
  1091. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-us.png +0 -0
  1092. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uy.png +0 -0
  1093. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uz.png +0 -0
  1094. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-va.png +0 -0
  1095. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vc.png +0 -0
  1096. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ve.png +0 -0
  1097. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vg.png +0 -0
  1098. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vi.png +0 -0
  1099. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vn.png +0 -0
  1100. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vu.png +0 -0
  1101. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-wf.png +0 -0
  1102. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ws.png +0 -0
  1103. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ye.png +0 -0
  1104. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-za.png +0 -0
  1105. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zm.png +0 -0
  1106. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zw.png +0 -0
  1107. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings-white.png +0 -0
  1108. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings.png +0 -0
  1109. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/important-icon.png +0 -0
  1110. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/information-icon.png +0 -0
  1111. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/internet-web-browser.png +0 -0
  1112. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon-shrunk.png +0 -0
  1113. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.png +0 -0
  1114. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.svg +0 -0
  1115. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon-tiny.png +0 -0
  1116. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon.png +0 -0
  1117. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/navigation.png +0 -0
  1118. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon-tiny.png +0 -0
  1119. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon.png +0 -0
  1120. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy-logo.png +0 -0
  1121. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy_org_logo.gif +0 -0
  1122. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipycentral_logo.png +0 -0
  1123. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipyshiny_small.png +0 -0
  1124. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/send-email-icon.png +0 -0
  1125. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon-shrunk.png +0 -0
  1126. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.png +0 -0
  1127. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.svg +0 -0
  1128. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiniest.png +0 -0
  1129. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiny.png +0 -0
  1130. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon.png +0 -0
  1131. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/transparent-pixel.gif +0 -0
  1132. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/ui-anim_basic_16x16.gif +0 -0
  1133. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/js/copybutton.js +0 -0
  1134. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/accordion.less +0 -0
  1135. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/alerts.less +0 -0
  1136. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/bootstrap.less +0 -0
  1137. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/breadcrumbs.less +0 -0
  1138. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/button-groups.less +0 -0
  1139. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/buttons.less +0 -0
  1140. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/carousel.less +0 -0
  1141. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/close.less +0 -0
  1142. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/code.less +0 -0
  1143. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/component-animations.less +0 -0
  1144. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/dropdowns.less +0 -0
  1145. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/forms.less +0 -0
  1146. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/grid.less +0 -0
  1147. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/hero-unit.less +0 -0
  1148. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/labels-badges.less +0 -0
  1149. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/layouts.less +0 -0
  1150. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/media.less +0 -0
  1151. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/mixins.less +0 -0
  1152. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/modals.less +0 -0
  1153. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navbar.less +0 -0
  1154. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navs.less +0 -0
  1155. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pager.less +0 -0
  1156. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pagination.less +0 -0
  1157. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/popovers.less +0 -0
  1158. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/progress-bars.less +0 -0
  1159. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/reset.less +0 -0
  1160. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-1200px-min.less +0 -0
  1161. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-767px-max.less +0 -0
  1162. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-768px-979px.less +0 -0
  1163. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-navbar.less +0 -0
  1164. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-utilities.less +0 -0
  1165. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive.less +0 -0
  1166. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/scaffolding.less +0 -0
  1167. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/sprites.less +0 -0
  1168. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tables.less +0 -0
  1169. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/thumbnails.less +0 -0
  1170. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tooltip.less +0 -0
  1171. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/type.less +0 -0
  1172. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/utilities.less +0 -0
  1173. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/variables.less +0 -0
  1174. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/wells.less +0 -0
  1175. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-bootstrap.less +0 -0
  1176. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-content.less +0 -0
  1177. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-extend.less +0 -0
  1178. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-footer.less +0 -0
  1179. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-header.less +0 -0
  1180. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-rightsidebar.less +0 -0
  1181. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-utils.less +0 -0
  1182. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/scipy.css_t +0 -0
  1183. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/theme.conf +0 -0
  1184. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/conf.py +0 -0
  1185. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/index.rst +0 -0
  1186. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc.rst +0 -0
  1187. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_2.rst +0 -0
  1188. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_3.rst +0 -0
  1189. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_4.rst +0 -0
  1190. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_optimize.rst +0 -0
  1191. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/autosummary/class.rst +0 -0
  1192. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/indexcontent.html +0 -0
  1193. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/indexsidebar.html +0 -0
  1194. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/_templates/layout.html +0 -0
  1195. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/about.rst +0 -0
  1196. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/bugs.rst +0 -0
  1197. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/contents.rst +0 -0
  1198. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/configure_git.rst +0 -0
  1199. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/development_setup.rst +0 -0
  1200. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/dot2_dot3.rst +0 -0
  1201. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/following_latest.rst +0 -0
  1202. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/forking_button.png +0 -0
  1203. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_development.rst +0 -0
  1204. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_intro.rst +0 -0
  1205. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_resources.rst +0 -0
  1206. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash/pull_button.png +0 -0
  1207. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/dev/gitwash_links.txt +0 -0
  1208. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/advanced.rst +0 -0
  1209. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/allocarr.f90 +0 -0
  1210. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/allocarr_session.dat +0 -0
  1211. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/array.f +0 -0
  1212. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/array_session.dat +0 -0
  1213. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/calculate.f +0 -0
  1214. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/calculate_session.dat +0 -0
  1215. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback.f +0 -0
  1216. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback2.pyf +0 -0
  1217. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/callback_session.dat +0 -0
  1218. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/common.f +0 -0
  1219. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/common_session.dat +0 -0
  1220. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/compile_session.dat +0 -0
  1221. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/distutils.rst +0 -0
  1222. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/extcallback.f +0 -0
  1223. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/extcallback_session.dat +0 -0
  1224. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib1.f +0 -0
  1225. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib1.pyf +0 -0
  1226. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib2.pyf +0 -0
  1227. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/fib3.f +0 -0
  1228. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/ftype.f +0 -0
  1229. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/ftype_session.dat +0 -0
  1230. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/getting-started.rst +0 -0
  1231. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/index.rst +0 -0
  1232. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/moddata.f90 +0 -0
  1233. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/moddata_session.dat +0 -0
  1234. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/python-usage.rst +0 -0
  1235. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/run_main_session.dat +0 -0
  1236. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/scalar.f +0 -0
  1237. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/scalar_session.dat +0 -0
  1238. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/setup_example.py +0 -0
  1239. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/signature-file.rst +0 -0
  1240. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/spam.pyf +0 -0
  1241. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/spam_session.dat +0 -0
  1242. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/string.f +0 -0
  1243. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/string_session.dat +0 -0
  1244. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/usage.rst +0 -0
  1245. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/var.pyf +0 -0
  1246. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/f2py/var_session.dat +0 -0
  1247. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/glossary.rst +0 -0
  1248. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/license.rst +0 -0
  1249. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal.rst +0 -0
  1250. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal3.rst +0 -0
  1251. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/deferred-ufunc-evaluation.rst +0 -0
  1252. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/generalized-ufuncs.rst +0 -0
  1253. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/groupby_additions.rst +0 -0
  1254. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/index.rst +0 -0
  1255. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/math_config_clean.rst +0 -0
  1256. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/missing-data.rst +0 -0
  1257. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/new-iterator-ufunc.rst +0 -0
  1258. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/newbugtracker.rst +0 -0
  1259. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/npy-format.rst +0 -0
  1260. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/structured_array_extensions.rst +0 -0
  1261. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/ufunc-overrides.rst +0 -0
  1262. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/neps/warnfix.rst +0 -0
  1263. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.datetime.rst +0 -0
  1264. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.nditer.rst +0 -0
  1265. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/arrays.rst +0 -0
  1266. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/c-api.deprecations.rst +0 -0
  1267. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/c-api.rst +0 -0
  1268. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/distutils.rst +0 -0
  1269. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.dia +0 -0
  1270. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.pdf +0 -0
  1271. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.png +0 -0
  1272. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.fig +0 -0
  1273. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.pdf +0 -0
  1274. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.png +0 -0
  1275. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/internals.rst +0 -0
  1276. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.baseclass.rst +0 -0
  1277. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.generic.rst +0 -0
  1278. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.rst +0 -0
  1279. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.array-creation.rst +0 -0
  1280. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.bitwise.rst +0 -0
  1281. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.char.rst +0 -0
  1282. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.ctypeslib.rst +0 -0
  1283. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.datetime.rst +0 -0
  1284. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.dtype.rst +0 -0
  1285. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.dual.rst +0 -0
  1286. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.emath.rst +0 -0
  1287. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.err.rst +0 -0
  1288. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.fft.rst +0 -0
  1289. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.financial.rst +0 -0
  1290. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.functional.rst +0 -0
  1291. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.help.rst +0 -0
  1292. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.indexing.rst +0 -0
  1293. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.logic.rst +0 -0
  1294. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.math.rst +0 -0
  1295. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.matlib.rst +0 -0
  1296. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.numarray.rst +0 -0
  1297. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.oldnumeric.rst +0 -0
  1298. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.other.rst +0 -0
  1299. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.padding.rst +0 -0
  1300. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.chebyshev.rst +0 -0
  1301. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.classes.rst +0 -0
  1302. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite.rst +0 -0
  1303. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite_e.rst +0 -0
  1304. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.laguerre.rst +0 -0
  1305. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.legendre.rst +0 -0
  1306. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.package.rst +0 -0
  1307. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.poly1d.rst +0 -0
  1308. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.polynomial.rst +0 -0
  1309. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.rst +0 -0
  1310. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.random.rst +0 -0
  1311. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.rst +0 -0
  1312. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.set.rst +0 -0
  1313. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.testing.rst +0 -0
  1314. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/routines.window.rst +0 -0
  1315. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/reference/swig.rst +0 -0
  1316. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.broadcasting.rst +0 -0
  1317. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.byteswapping.rst +0 -0
  1318. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.creation.rst +0 -0
  1319. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.indexing.rst +0 -0
  1320. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.io.rst +0 -0
  1321. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.rst +0 -0
  1322. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.subclassing.rst +0 -0
  1323. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/basics.types.rst +0 -0
  1324. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/c-info.rst +0 -0
  1325. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/howtofind.rst +0 -0
  1326. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/index.rst +0 -0
  1327. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/introduction.rst +0 -0
  1328. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/misc.rst +0 -0
  1329. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/performance.rst +0 -0
  1330. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/source/user/whatisnumpy.rst +0 -0
  1331. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/.gitignore +0 -0
  1332. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/.travis.yml +0 -0
  1333. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/LICENSE.txt +0 -0
  1334. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/MANIFEST.in +0 -0
  1335. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/README.rst +0 -0
  1336. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/__init__.py +0 -0
  1337. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/comment_eater.py +0 -0
  1338. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/compiler_unparse.py +0 -0
  1339. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape.py +0 -0
  1340. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape_sphinx.py +0 -0
  1341. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/linkcode.py +0 -0
  1342. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/numpydoc.py +0 -0
  1343. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/phantom_import.py +0 -0
  1344. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/plot_directive.py +0 -0
  1345. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_docscrape.py +0 -0
  1346. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_linkcode.py +0 -0
  1347. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_phantom_import.py +0 -0
  1348. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_plot_directive.py +0 -0
  1349. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_traitsdoc.py +0 -0
  1350. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/traitsdoc.py +0 -0
  1351. {numpy-1.9.2 → numpy-1.10.0.post2}/doc/sphinxext/setup.py +0 -0
  1352. {numpy-1.9.2/numpy/core/code_generators → numpy-1.10.0.post2/numpy/_build_utils}/__init__.py +0 -0
  1353. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/compat/__init__.py +0 -0
  1354. {numpy-1.9.2/numpy/distutils/tests/f2py_ext → numpy-1.10.0.post2/numpy/core/code_generators}/__init__.py +0 -0
  1355. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/code_generators/genapi.py +0 -0
  1356. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/code_generators/generate_numpy_api.py +0 -0
  1357. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/cversions.py +0 -0
  1358. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/_neighborhood_iterator_imp.h +0 -0
  1359. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/_numpyconfig.h.in +0 -0
  1360. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayobject.h +0 -0
  1361. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayscalars.h +0 -0
  1362. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/halffloat.h +0 -0
  1363. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/noprefix.h +0 -0
  1364. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_1_7_deprecated_api.h +0 -0
  1365. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_interrupt.h +0 -0
  1366. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_no_deprecated_api.h +0 -0
  1367. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_os.h +0 -0
  1368. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/old_defines.h +0 -0
  1369. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/oldnumeric.h +0 -0
  1370. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/ufuncobject.h +0 -0
  1371. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/include/numpy/utils.h +0 -0
  1372. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/info.py +0 -0
  1373. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/mlib.ini.in +0 -0
  1374. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/npymath.ini.in +0 -0
  1375. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/dummymodule.c +0 -0
  1376. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/_datetime.h +0 -0
  1377. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/alloc.h +0 -0
  1378. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.c +0 -0
  1379. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.h +0 -0
  1380. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_array.c +0 -0
  1381. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_scalar.c +0 -0
  1382. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/arrayobject.h +0 -0
  1383. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/buffer.h +0 -0
  1384. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/calculation.h +0 -0
  1385. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/conversion_utils.h +0 -0
  1386. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert.h +0 -0
  1387. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert_datatype.h +0 -0
  1388. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ctors.h +0 -0
  1389. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busday.h +0 -0
  1390. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busdaycal.h +0 -0
  1391. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_strings.h +0 -0
  1392. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/descriptor.h +0 -0
  1393. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/flagsobject.c +0 -0
  1394. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/getset.h +0 -0
  1395. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/hashdescr.h +0 -0
  1396. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/item_selection.h +0 -0
  1397. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/iterators.h +0 -0
  1398. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/methods.h +0 -0
  1399. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_impl.h +0 -0
  1400. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_pywrap.h +0 -0
  1401. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_templ.c.src +0 -0
  1402. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpymemoryview.h +0 -0
  1403. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpyos.h +0 -0
  1404. {numpy-1.9.2/numpy/core/blasdot → numpy-1.10.0.post2/numpy/core/src/multiarray}/python_xerbla.c +0 -0
  1405. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.c +0 -0
  1406. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.h +0 -0
  1407. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.c +0 -0
  1408. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.h +0 -0
  1409. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/shape.h +0 -0
  1410. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ucsnarrow.h +0 -0
  1411. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.c +0 -0
  1412. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.h +0 -0
  1413. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/_signbit.c +0 -0
  1414. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/halffloat.c +0 -0
  1415. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npymath/npy_math_common.h +0 -0
  1416. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/npysort/binsearch.c.src +0 -0
  1417. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/lowlevel_strided_loops.h +0 -0
  1418. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_binsearch.h.src +0 -0
  1419. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_fpmath.h +0 -0
  1420. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/private/npy_pycompat.h +0 -0
  1421. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.c +0 -0
  1422. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.h +0 -0
  1423. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/struct_ufunc_test.c.src +0 -0
  1424. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_object.h +0 -0
  1425. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_type_resolution.h +0 -0
  1426. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/data/astype_copy.pkl +0 -0
  1427. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/data/recarray_from_file.fits +0 -0
  1428. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/core/tests/test_scalarprint.py +0 -0
  1429. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/ctypeslib.py +0 -0
  1430. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/__version__.py +0 -0
  1431. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/__init__.py +0 -0
  1432. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/bdist_rpm.py +0 -0
  1433. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_py.py +0 -0
  1434. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_scripts.py +0 -0
  1435. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/build_src.py +0 -0
  1436. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/config_compiler.py +0 -0
  1437. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/develop.py +0 -0
  1438. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/egg_info.py +0 -0
  1439. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install.py +0 -0
  1440. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_clib.py +0 -0
  1441. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_data.py +0 -0
  1442. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/install_headers.py +0 -0
  1443. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/command/sdist.py +0 -0
  1444. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/compat.py +0 -0
  1445. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/conv_template.py +0 -0
  1446. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/core.py +0 -0
  1447. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/cpuinfo.py +0 -0
  1448. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/environment.py +0 -0
  1449. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/extension.py +0 -0
  1450. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/__init__.py +0 -0
  1451. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/absoft.py +0 -0
  1452. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/g95.py +0 -0
  1453. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/hpux.py +0 -0
  1454. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/ibm.py +0 -0
  1455. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/lahey.py +0 -0
  1456. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/mips.py +0 -0
  1457. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/nag.py +0 -0
  1458. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/none.py +0 -0
  1459. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/pathf95.py +0 -0
  1460. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/vast.py +0 -0
  1461. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/from_template.py +0 -0
  1462. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/info.py +0 -0
  1463. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/line_endings.py +0 -0
  1464. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/log.py +0 -0
  1465. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/mingw/gfortran_vs2003_hack.c +0 -0
  1466. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/numpy_distribution.py +0 -0
  1467. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/pathccompiler.py +0 -0
  1468. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/setup.py +0 -0
  1469. {numpy-1.9.2/numpy/distutils/tests/f2py_f90_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext}/__init__.py +0 -0
  1470. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/setup.py +0 -0
  1471. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib1.f +0 -0
  1472. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib2.pyf +0 -0
  1473. {numpy-1.9.2/numpy/distutils/tests/gen_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext}/__init__.py +0 -0
  1474. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/include/body.f90 +0 -0
  1475. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/setup.py +0 -0
  1476. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 +0 -0
  1477. {numpy-1.9.2/numpy/distutils/tests/pyrex_ext → numpy-1.10.0.post2/numpy/distutils/tests/gen_ext}/__init__.py +0 -0
  1478. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/gen_ext/setup.py +0 -0
  1479. {numpy-1.9.2/numpy/distutils/tests/swig_ext → numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext}/__init__.py +0 -0
  1480. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/primes.pyx +0 -0
  1481. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/setup.py +0 -0
  1482. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/setup.py +0 -0
  1483. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/setup.py +0 -0
  1484. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.c +0 -0
  1485. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.i +0 -0
  1486. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.cc +0 -0
  1487. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.h +0 -0
  1488. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.i +0 -0
  1489. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/distutils/tests/test_exec_command.py +0 -0
  1490. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/__init__.py +0 -0
  1491. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/basics.py +0 -0
  1492. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/broadcasting.py +0 -0
  1493. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/constants.py +0 -0
  1494. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/howtofind.py +0 -0
  1495. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/internals.py +0 -0
  1496. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/io.py +0 -0
  1497. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/jargon.py +0 -0
  1498. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/methods_vs_functions.py +0 -0
  1499. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/misc.py +0 -0
  1500. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/performance.py +0 -0
  1501. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/subclassing.py +0 -0
  1502. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/doc/ufuncs.py +0 -0
  1503. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/dual.py +0 -0
  1504. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/__version__.py +0 -0
  1505. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/info.py +0 -0
  1506. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +0 -0
  1507. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_free.f90 +0 -0
  1508. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +0 -0
  1509. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_use.f90 +0 -0
  1510. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/precision.f90 +0 -0
  1511. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/kind/foo.f90 +0 -0
  1512. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo.f +0 -0
  1513. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_fixed.f90 +0 -0
  1514. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_free.f90 +0 -0
  1515. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/regression/inout.f90 +0 -0
  1516. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/f2py/tests/src/size/foo.f90 +0 -0
  1517. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/fft/__init__.py +0 -0
  1518. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/fft/helper.py +0 -0
  1519. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/__init__.py +0 -0
  1520. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/_datasource.py +0 -0
  1521. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/_version.py +0 -0
  1522. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/scimath.py +0 -0
  1523. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/data/python3.npy +0 -0
  1524. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/data/win64python2.npy +0 -0
  1525. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test__datasource.py +0 -0
  1526. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_arrayterator.py +0 -0
  1527. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_regression.py +0 -0
  1528. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_ufunclike.py +0 -0
  1529. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/tests/test_utils.py +0 -0
  1530. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/ufunclike.py +0 -0
  1531. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/lib/user_array.py +0 -0
  1532. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/__init__.py +0 -0
  1533. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/info.py +0 -0
  1534. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/blas_lite.c +0 -0
  1535. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlamch.c +0 -0
  1536. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlapack_lite.c +0 -0
  1537. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c.h +0 -0
  1538. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c_lite.c +0 -0
  1539. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/zlapack_lite.c +0 -0
  1540. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/setup.py +0 -0
  1541. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/linalg/tests/test_deprecations.py +0 -0
  1542. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/ma/version.py +0 -0
  1543. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/matrixlib/__init__.py +0 -0
  1544. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/matrixlib/setup.py +0 -0
  1545. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/__init__.py +0 -0
  1546. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/polynomial.py +0 -0
  1547. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/setup.py +0 -0
  1548. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_chebyshev.py +0 -0
  1549. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_classes.py +0 -0
  1550. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite.py +0 -0
  1551. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite_e.py +0 -0
  1552. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_laguerre.py +0 -0
  1553. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_legendre.py +0 -0
  1554. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polynomial.py +0 -0
  1555. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polyutils.py +0 -0
  1556. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_printing.py +0 -0
  1557. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/__init__.py +0 -0
  1558. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/info.py +0 -0
  1559. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/Python.pxi +0 -0
  1560. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/distributions.h +0 -0
  1561. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/generate_mtrand_c.py +0 -0
  1562. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.c +0 -0
  1563. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.h +0 -0
  1564. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/mtrand_py_helper.h +0 -0
  1565. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/numpy.pxd +0 -0
  1566. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.c +0 -0
  1567. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.h +0 -0
  1568. {numpy-1.9.2 → numpy-1.10.0.post2}/numpy/testing/tests/test_doctesting.py +0 -0
  1569. {numpy-1.9.2 → numpy-1.10.0.post2}/setupegg.py +0 -0
  1570. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/Makefile +0 -0
  1571. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/pyfragments.swg +0 -0
  1572. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array1.cxx +0 -0
  1573. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array1.h +0 -0
  1574. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array2.cxx +0 -0
  1575. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Array2.h +0 -0
  1576. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.cxx +0 -0
  1577. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.h +0 -0
  1578. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Farray.i +0 -0
  1579. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.cxx +0 -0
  1580. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.h +0 -0
  1581. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Fortran.i +0 -0
  1582. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.cxx +0 -0
  1583. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.h +0 -0
  1584. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Matrix.i +0 -0
  1585. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.cxx +0 -0
  1586. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.h +0 -0
  1587. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.i +0 -0
  1588. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.cxx +0 -0
  1589. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.h +0 -0
  1590. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Tensor.i +0 -0
  1591. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.cxx +0 -0
  1592. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.h +0 -0
  1593. {numpy-1.9.2 → numpy-1.10.0.post2}/tools/swig/test/Vector.i +0 -0
@@ -1,2842 +0,0 @@
1
- from __future__ import division, absolute_import, print_function
2
-
3
- import os
4
- import sys
5
- import warnings
6
- import collections
7
- from . import multiarray
8
- from . import umath
9
- from .umath import (invert, sin, UFUNC_BUFSIZE_DEFAULT, ERR_IGNORE,
10
- ERR_WARN, ERR_RAISE, ERR_CALL, ERR_PRINT, ERR_LOG,
11
- ERR_DEFAULT, PINF, NAN)
12
- from . import numerictypes
13
- from .numerictypes import longlong, intc, int_, float_, complex_, bool_
14
-
15
- if sys.version_info[0] >= 3:
16
- import pickle
17
- basestring = str
18
- else:
19
- import cPickle as pickle
20
-
21
- loads = pickle.loads
22
-
23
-
24
- __all__ = ['newaxis', 'ndarray', 'flatiter', 'nditer', 'nested_iters', 'ufunc',
25
- 'arange', 'array', 'zeros', 'count_nonzero',
26
- 'empty', 'broadcast', 'dtype', 'fromstring', 'fromfile',
27
- 'frombuffer', 'int_asbuffer', 'where', 'argwhere', 'copyto',
28
- 'concatenate', 'fastCopyAndTranspose', 'lexsort', 'set_numeric_ops',
29
- 'can_cast', 'promote_types', 'min_scalar_type', 'result_type',
30
- 'asarray', 'asanyarray', 'ascontiguousarray', 'asfortranarray',
31
- 'isfortran', 'empty_like', 'zeros_like', 'ones_like',
32
- 'correlate', 'convolve', 'inner', 'dot', 'einsum', 'outer', 'vdot',
33
- 'alterdot', 'restoredot', 'roll', 'rollaxis', 'cross', 'tensordot',
34
- 'array2string', 'get_printoptions', 'set_printoptions',
35
- 'array_repr', 'array_str', 'set_string_function',
36
- 'little_endian', 'require',
37
- 'fromiter', 'array_equal', 'array_equiv',
38
- 'indices', 'fromfunction', 'isclose',
39
- 'load', 'loads', 'isscalar', 'binary_repr', 'base_repr',
40
- 'ones', 'identity', 'allclose', 'compare_chararrays', 'putmask',
41
- 'seterr', 'geterr', 'setbufsize', 'getbufsize',
42
- 'seterrcall', 'geterrcall', 'errstate', 'flatnonzero',
43
- 'Inf', 'inf', 'infty', 'Infinity',
44
- 'nan', 'NaN', 'False_', 'True_', 'bitwise_not',
45
- 'CLIP', 'RAISE', 'WRAP', 'MAXDIMS', 'BUFSIZE', 'ALLOW_THREADS',
46
- 'ComplexWarning', 'may_share_memory', 'full', 'full_like']
47
-
48
- if sys.version_info[0] < 3:
49
- __all__.extend(['getbuffer', 'newbuffer'])
50
-
51
-
52
- class ComplexWarning(RuntimeWarning):
53
- """
54
- The warning raised when casting a complex dtype to a real dtype.
55
-
56
- As implemented, casting a complex number to a real discards its imaginary
57
- part, but this behavior may not be what the user actually wants.
58
-
59
- """
60
- pass
61
-
62
- bitwise_not = invert
63
-
64
- CLIP = multiarray.CLIP
65
- WRAP = multiarray.WRAP
66
- RAISE = multiarray.RAISE
67
- MAXDIMS = multiarray.MAXDIMS
68
- ALLOW_THREADS = multiarray.ALLOW_THREADS
69
- BUFSIZE = multiarray.BUFSIZE
70
-
71
- ndarray = multiarray.ndarray
72
- flatiter = multiarray.flatiter
73
- nditer = multiarray.nditer
74
- nested_iters = multiarray.nested_iters
75
- broadcast = multiarray.broadcast
76
- dtype = multiarray.dtype
77
- copyto = multiarray.copyto
78
- ufunc = type(sin)
79
-
80
-
81
- def zeros_like(a, dtype=None, order='K', subok=True):
82
- """
83
- Return an array of zeros with the same shape and type as a given array.
84
-
85
- Parameters
86
- ----------
87
- a : array_like
88
- The shape and data-type of `a` define these same attributes of
89
- the returned array.
90
- dtype : data-type, optional
91
- .. versionadded:: 1.6.0
92
- Overrides the data type of the result.
93
- order : {'C', 'F', 'A', or 'K'}, optional
94
- .. versionadded:: 1.6.0
95
- Overrides the memory layout of the result. 'C' means C-order,
96
- 'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous,
97
- 'C' otherwise. 'K' means match the layout of `a` as closely
98
- as possible.
99
- subok : bool, optional.
100
- If True, then the newly created array will use the sub-class
101
- type of 'a', otherwise it will be a base-class array. Defaults
102
- to True.
103
-
104
- Returns
105
- -------
106
- out : ndarray
107
- Array of zeros with the same shape and type as `a`.
108
-
109
- See Also
110
- --------
111
- ones_like : Return an array of ones with shape and type of input.
112
- empty_like : Return an empty array with shape and type of input.
113
- zeros : Return a new array setting values to zero.
114
- ones : Return a new array setting values to one.
115
- empty : Return a new uninitialized array.
116
-
117
- Examples
118
- --------
119
- >>> x = np.arange(6)
120
- >>> x = x.reshape((2, 3))
121
- >>> x
122
- array([[0, 1, 2],
123
- [3, 4, 5]])
124
- >>> np.zeros_like(x)
125
- array([[0, 0, 0],
126
- [0, 0, 0]])
127
-
128
- >>> y = np.arange(3, dtype=np.float)
129
- >>> y
130
- array([ 0., 1., 2.])
131
- >>> np.zeros_like(y)
132
- array([ 0., 0., 0.])
133
-
134
- """
135
- res = empty_like(a, dtype=dtype, order=order, subok=subok)
136
- # needed instead of a 0 to get same result as zeros for for string dtypes
137
- z = zeros(1, dtype=res.dtype)
138
- multiarray.copyto(res, z, casting='unsafe')
139
- return res
140
-
141
- def ones(shape, dtype=None, order='C'):
142
- """
143
- Return a new array of given shape and type, filled with ones.
144
-
145
- Parameters
146
- ----------
147
- shape : int or sequence of ints
148
- Shape of the new array, e.g., ``(2, 3)`` or ``2``.
149
- dtype : data-type, optional
150
- The desired data-type for the array, e.g., `numpy.int8`. Default is
151
- `numpy.float64`.
152
- order : {'C', 'F'}, optional
153
- Whether to store multidimensional data in C- or Fortran-contiguous
154
- (row- or column-wise) order in memory.
155
-
156
- Returns
157
- -------
158
- out : ndarray
159
- Array of ones with the given shape, dtype, and order.
160
-
161
- See Also
162
- --------
163
- zeros, ones_like
164
-
165
- Examples
166
- --------
167
- >>> np.ones(5)
168
- array([ 1., 1., 1., 1., 1.])
169
-
170
- >>> np.ones((5,), dtype=np.int)
171
- array([1, 1, 1, 1, 1])
172
-
173
- >>> np.ones((2, 1))
174
- array([[ 1.],
175
- [ 1.]])
176
-
177
- >>> s = (2,2)
178
- >>> np.ones(s)
179
- array([[ 1., 1.],
180
- [ 1., 1.]])
181
-
182
- """
183
- a = empty(shape, dtype, order)
184
- multiarray.copyto(a, 1, casting='unsafe')
185
- return a
186
-
187
- def ones_like(a, dtype=None, order='K', subok=True):
188
- """
189
- Return an array of ones with the same shape and type as a given array.
190
-
191
- Parameters
192
- ----------
193
- a : array_like
194
- The shape and data-type of `a` define these same attributes of
195
- the returned array.
196
- dtype : data-type, optional
197
- .. versionadded:: 1.6.0
198
- Overrides the data type of the result.
199
- order : {'C', 'F', 'A', or 'K'}, optional
200
- .. versionadded:: 1.6.0
201
- Overrides the memory layout of the result. 'C' means C-order,
202
- 'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous,
203
- 'C' otherwise. 'K' means match the layout of `a` as closely
204
- as possible.
205
- subok : bool, optional.
206
- If True, then the newly created array will use the sub-class
207
- type of 'a', otherwise it will be a base-class array. Defaults
208
- to True.
209
-
210
- Returns
211
- -------
212
- out : ndarray
213
- Array of ones with the same shape and type as `a`.
214
-
215
- See Also
216
- --------
217
- zeros_like : Return an array of zeros with shape and type of input.
218
- empty_like : Return an empty array with shape and type of input.
219
- zeros : Return a new array setting values to zero.
220
- ones : Return a new array setting values to one.
221
- empty : Return a new uninitialized array.
222
-
223
- Examples
224
- --------
225
- >>> x = np.arange(6)
226
- >>> x = x.reshape((2, 3))
227
- >>> x
228
- array([[0, 1, 2],
229
- [3, 4, 5]])
230
- >>> np.ones_like(x)
231
- array([[1, 1, 1],
232
- [1, 1, 1]])
233
-
234
- >>> y = np.arange(3, dtype=np.float)
235
- >>> y
236
- array([ 0., 1., 2.])
237
- >>> np.ones_like(y)
238
- array([ 1., 1., 1.])
239
-
240
- """
241
- res = empty_like(a, dtype=dtype, order=order, subok=subok)
242
- multiarray.copyto(res, 1, casting='unsafe')
243
- return res
244
-
245
- def full(shape, fill_value, dtype=None, order='C'):
246
- """
247
- Return a new array of given shape and type, filled with `fill_value`.
248
-
249
- Parameters
250
- ----------
251
- shape : int or sequence of ints
252
- Shape of the new array, e.g., ``(2, 3)`` or ``2``.
253
- fill_value : scalar
254
- Fill value.
255
- dtype : data-type, optional
256
- The desired data-type for the array, e.g., `numpy.int8`. Default is
257
- is chosen as `np.array(fill_value).dtype`.
258
- order : {'C', 'F'}, optional
259
- Whether to store multidimensional data in C- or Fortran-contiguous
260
- (row- or column-wise) order in memory.
261
-
262
- Returns
263
- -------
264
- out : ndarray
265
- Array of `fill_value` with the given shape, dtype, and order.
266
-
267
- See Also
268
- --------
269
- zeros_like : Return an array of zeros with shape and type of input.
270
- ones_like : Return an array of ones with shape and type of input.
271
- empty_like : Return an empty array with shape and type of input.
272
- full_like : Fill an array with shape and type of input.
273
- zeros : Return a new array setting values to zero.
274
- ones : Return a new array setting values to one.
275
- empty : Return a new uninitialized array.
276
-
277
- Examples
278
- --------
279
- >>> np.full((2, 2), np.inf)
280
- array([[ inf, inf],
281
- [ inf, inf]])
282
- >>> np.full((2, 2), 10, dtype=np.int)
283
- array([[10, 10],
284
- [10, 10]])
285
-
286
- """
287
- a = empty(shape, dtype, order)
288
- multiarray.copyto(a, fill_value, casting='unsafe')
289
- return a
290
-
291
- def full_like(a, fill_value, dtype=None, order='K', subok=True):
292
- """
293
- Return a full array with the same shape and type as a given array.
294
-
295
- Parameters
296
- ----------
297
- a : array_like
298
- The shape and data-type of `a` define these same attributes of
299
- the returned array.
300
- fill_value : scalar
301
- Fill value.
302
- dtype : data-type, optional
303
- Overrides the data type of the result.
304
- order : {'C', 'F', 'A', or 'K'}, optional
305
- Overrides the memory layout of the result. 'C' means C-order,
306
- 'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous,
307
- 'C' otherwise. 'K' means match the layout of `a` as closely
308
- as possible.
309
- subok : bool, optional.
310
- If True, then the newly created array will use the sub-class
311
- type of 'a', otherwise it will be a base-class array. Defaults
312
- to True.
313
-
314
- Returns
315
- -------
316
- out : ndarray
317
- Array of `fill_value` with the same shape and type as `a`.
318
-
319
- See Also
320
- --------
321
- zeros_like : Return an array of zeros with shape and type of input.
322
- ones_like : Return an array of ones with shape and type of input.
323
- empty_like : Return an empty array with shape and type of input.
324
- zeros : Return a new array setting values to zero.
325
- ones : Return a new array setting values to one.
326
- empty : Return a new uninitialized array.
327
- full : Fill a new array.
328
-
329
- Examples
330
- --------
331
- >>> x = np.arange(6, dtype=np.int)
332
- >>> np.full_like(x, 1)
333
- array([1, 1, 1, 1, 1, 1])
334
- >>> np.full_like(x, 0.1)
335
- array([0, 0, 0, 0, 0, 0])
336
- >>> np.full_like(x, 0.1, dtype=np.double)
337
- array([ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])
338
- >>> np.full_like(x, np.nan, dtype=np.double)
339
- array([ nan, nan, nan, nan, nan, nan])
340
-
341
- >>> y = np.arange(6, dtype=np.double)
342
- >>> np.full_like(y, 0.1)
343
- array([ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])
344
-
345
- """
346
- res = empty_like(a, dtype=dtype, order=order, subok=subok)
347
- multiarray.copyto(res, fill_value, casting='unsafe')
348
- return res
349
-
350
-
351
- def extend_all(module):
352
- adict = {}
353
- for a in __all__:
354
- adict[a] = 1
355
- try:
356
- mall = getattr(module, '__all__')
357
- except AttributeError:
358
- mall = [k for k in module.__dict__.keys() if not k.startswith('_')]
359
- for a in mall:
360
- if a not in adict:
361
- __all__.append(a)
362
-
363
- newaxis = None
364
-
365
-
366
- arange = multiarray.arange
367
- array = multiarray.array
368
- zeros = multiarray.zeros
369
- count_nonzero = multiarray.count_nonzero
370
- empty = multiarray.empty
371
- empty_like = multiarray.empty_like
372
- fromstring = multiarray.fromstring
373
- fromiter = multiarray.fromiter
374
- fromfile = multiarray.fromfile
375
- frombuffer = multiarray.frombuffer
376
- may_share_memory = multiarray.may_share_memory
377
- if sys.version_info[0] < 3:
378
- newbuffer = multiarray.newbuffer
379
- getbuffer = multiarray.getbuffer
380
- int_asbuffer = multiarray.int_asbuffer
381
- where = multiarray.where
382
- concatenate = multiarray.concatenate
383
- fastCopyAndTranspose = multiarray._fastCopyAndTranspose
384
- set_numeric_ops = multiarray.set_numeric_ops
385
- can_cast = multiarray.can_cast
386
- promote_types = multiarray.promote_types
387
- min_scalar_type = multiarray.min_scalar_type
388
- result_type = multiarray.result_type
389
- lexsort = multiarray.lexsort
390
- compare_chararrays = multiarray.compare_chararrays
391
- putmask = multiarray.putmask
392
- einsum = multiarray.einsum
393
-
394
- def asarray(a, dtype=None, order=None):
395
- """
396
- Convert the input to an array.
397
-
398
- Parameters
399
- ----------
400
- a : array_like
401
- Input data, in any form that can be converted to an array. This
402
- includes lists, lists of tuples, tuples, tuples of tuples, tuples
403
- of lists and ndarrays.
404
- dtype : data-type, optional
405
- By default, the data-type is inferred from the input data.
406
- order : {'C', 'F'}, optional
407
- Whether to use row-major ('C') or column-major ('F' for FORTRAN)
408
- memory representation. Defaults to 'C'.
409
-
410
- Returns
411
- -------
412
- out : ndarray
413
- Array interpretation of `a`. No copy is performed if the input
414
- is already an ndarray. If `a` is a subclass of ndarray, a base
415
- class ndarray is returned.
416
-
417
- See Also
418
- --------
419
- asanyarray : Similar function which passes through subclasses.
420
- ascontiguousarray : Convert input to a contiguous array.
421
- asfarray : Convert input to a floating point ndarray.
422
- asfortranarray : Convert input to an ndarray with column-major
423
- memory order.
424
- asarray_chkfinite : Similar function which checks input for NaNs and Infs.
425
- fromiter : Create an array from an iterator.
426
- fromfunction : Construct an array by executing a function on grid
427
- positions.
428
-
429
- Examples
430
- --------
431
- Convert a list into an array:
432
-
433
- >>> a = [1, 2]
434
- >>> np.asarray(a)
435
- array([1, 2])
436
-
437
- Existing arrays are not copied:
438
-
439
- >>> a = np.array([1, 2])
440
- >>> np.asarray(a) is a
441
- True
442
-
443
- If `dtype` is set, array is copied only if dtype does not match:
444
-
445
- >>> a = np.array([1, 2], dtype=np.float32)
446
- >>> np.asarray(a, dtype=np.float32) is a
447
- True
448
- >>> np.asarray(a, dtype=np.float64) is a
449
- False
450
-
451
- Contrary to `asanyarray`, ndarray subclasses are not passed through:
452
-
453
- >>> issubclass(np.matrix, np.ndarray)
454
- True
455
- >>> a = np.matrix([[1, 2]])
456
- >>> np.asarray(a) is a
457
- False
458
- >>> np.asanyarray(a) is a
459
- True
460
-
461
- """
462
- return array(a, dtype, copy=False, order=order)
463
-
464
- def asanyarray(a, dtype=None, order=None):
465
- """
466
- Convert the input to an ndarray, but pass ndarray subclasses through.
467
-
468
- Parameters
469
- ----------
470
- a : array_like
471
- Input data, in any form that can be converted to an array. This
472
- includes scalars, lists, lists of tuples, tuples, tuples of tuples,
473
- tuples of lists, and ndarrays.
474
- dtype : data-type, optional
475
- By default, the data-type is inferred from the input data.
476
- order : {'C', 'F'}, optional
477
- Whether to use row-major ('C') or column-major ('F') memory
478
- representation. Defaults to 'C'.
479
-
480
- Returns
481
- -------
482
- out : ndarray or an ndarray subclass
483
- Array interpretation of `a`. If `a` is an ndarray or a subclass
484
- of ndarray, it is returned as-is and no copy is performed.
485
-
486
- See Also
487
- --------
488
- asarray : Similar function which always returns ndarrays.
489
- ascontiguousarray : Convert input to a contiguous array.
490
- asfarray : Convert input to a floating point ndarray.
491
- asfortranarray : Convert input to an ndarray with column-major
492
- memory order.
493
- asarray_chkfinite : Similar function which checks input for NaNs and
494
- Infs.
495
- fromiter : Create an array from an iterator.
496
- fromfunction : Construct an array by executing a function on grid
497
- positions.
498
-
499
- Examples
500
- --------
501
- Convert a list into an array:
502
-
503
- >>> a = [1, 2]
504
- >>> np.asanyarray(a)
505
- array([1, 2])
506
-
507
- Instances of `ndarray` subclasses are passed through as-is:
508
-
509
- >>> a = np.matrix([1, 2])
510
- >>> np.asanyarray(a) is a
511
- True
512
-
513
- """
514
- return array(a, dtype, copy=False, order=order, subok=True)
515
-
516
- def ascontiguousarray(a, dtype=None):
517
- """
518
- Return a contiguous array in memory (C order).
519
-
520
- Parameters
521
- ----------
522
- a : array_like
523
- Input array.
524
- dtype : str or dtype object, optional
525
- Data-type of returned array.
526
-
527
- Returns
528
- -------
529
- out : ndarray
530
- Contiguous array of same shape and content as `a`, with type `dtype`
531
- if specified.
532
-
533
- See Also
534
- --------
535
- asfortranarray : Convert input to an ndarray with column-major
536
- memory order.
537
- require : Return an ndarray that satisfies requirements.
538
- ndarray.flags : Information about the memory layout of the array.
539
-
540
- Examples
541
- --------
542
- >>> x = np.arange(6).reshape(2,3)
543
- >>> np.ascontiguousarray(x, dtype=np.float32)
544
- array([[ 0., 1., 2.],
545
- [ 3., 4., 5.]], dtype=float32)
546
- >>> x.flags['C_CONTIGUOUS']
547
- True
548
-
549
- """
550
- return array(a, dtype, copy=False, order='C', ndmin=1)
551
-
552
- def asfortranarray(a, dtype=None):
553
- """
554
- Return an array laid out in Fortran order in memory.
555
-
556
- Parameters
557
- ----------
558
- a : array_like
559
- Input array.
560
- dtype : str or dtype object, optional
561
- By default, the data-type is inferred from the input data.
562
-
563
- Returns
564
- -------
565
- out : ndarray
566
- The input `a` in Fortran, or column-major, order.
567
-
568
- See Also
569
- --------
570
- ascontiguousarray : Convert input to a contiguous (C order) array.
571
- asanyarray : Convert input to an ndarray with either row or
572
- column-major memory order.
573
- require : Return an ndarray that satisfies requirements.
574
- ndarray.flags : Information about the memory layout of the array.
575
-
576
- Examples
577
- --------
578
- >>> x = np.arange(6).reshape(2,3)
579
- >>> y = np.asfortranarray(x)
580
- >>> x.flags['F_CONTIGUOUS']
581
- False
582
- >>> y.flags['F_CONTIGUOUS']
583
- True
584
-
585
- """
586
- return array(a, dtype, copy=False, order='F', ndmin=1)
587
-
588
- def require(a, dtype=None, requirements=None):
589
- """
590
- Return an ndarray of the provided type that satisfies requirements.
591
-
592
- This function is useful to be sure that an array with the correct flags
593
- is returned for passing to compiled code (perhaps through ctypes).
594
-
595
- Parameters
596
- ----------
597
- a : array_like
598
- The object to be converted to a type-and-requirement-satisfying array.
599
- dtype : data-type
600
- The required data-type, the default data-type is float64).
601
- requirements : str or list of str
602
- The requirements list can be any of the following
603
-
604
- * 'F_CONTIGUOUS' ('F') - ensure a Fortran-contiguous array
605
- * 'C_CONTIGUOUS' ('C') - ensure a C-contiguous array
606
- * 'ALIGNED' ('A') - ensure a data-type aligned array
607
- * 'WRITEABLE' ('W') - ensure a writable array
608
- * 'OWNDATA' ('O') - ensure an array that owns its own data
609
-
610
- See Also
611
- --------
612
- asarray : Convert input to an ndarray.
613
- asanyarray : Convert to an ndarray, but pass through ndarray subclasses.
614
- ascontiguousarray : Convert input to a contiguous array.
615
- asfortranarray : Convert input to an ndarray with column-major
616
- memory order.
617
- ndarray.flags : Information about the memory layout of the array.
618
-
619
- Notes
620
- -----
621
- The returned array will be guaranteed to have the listed requirements
622
- by making a copy if needed.
623
-
624
- Examples
625
- --------
626
- >>> x = np.arange(6).reshape(2,3)
627
- >>> x.flags
628
- C_CONTIGUOUS : True
629
- F_CONTIGUOUS : False
630
- OWNDATA : False
631
- WRITEABLE : True
632
- ALIGNED : True
633
- UPDATEIFCOPY : False
634
-
635
- >>> y = np.require(x, dtype=np.float32, requirements=['A', 'O', 'W', 'F'])
636
- >>> y.flags
637
- C_CONTIGUOUS : False
638
- F_CONTIGUOUS : True
639
- OWNDATA : True
640
- WRITEABLE : True
641
- ALIGNED : True
642
- UPDATEIFCOPY : False
643
-
644
- """
645
- if requirements is None:
646
- requirements = []
647
- else:
648
- requirements = [x.upper() for x in requirements]
649
-
650
- if not requirements:
651
- return asanyarray(a, dtype=dtype)
652
-
653
- if 'ENSUREARRAY' in requirements or 'E' in requirements:
654
- subok = False
655
- else:
656
- subok = True
657
-
658
- arr = array(a, dtype=dtype, copy=False, subok=subok)
659
-
660
- copychar = 'A'
661
- if 'FORTRAN' in requirements or \
662
- 'F_CONTIGUOUS' in requirements or \
663
- 'F' in requirements:
664
- copychar = 'F'
665
- elif 'CONTIGUOUS' in requirements or \
666
- 'C_CONTIGUOUS' in requirements or \
667
- 'C' in requirements:
668
- copychar = 'C'
669
-
670
- for prop in requirements:
671
- if not arr.flags[prop]:
672
- arr = arr.copy(copychar)
673
- break
674
- return arr
675
-
676
- def isfortran(a):
677
- """
678
- Returns True if array is arranged in Fortran-order in memory
679
- and not C-order.
680
-
681
- Parameters
682
- ----------
683
- a : ndarray
684
- Input array.
685
-
686
-
687
- Examples
688
- --------
689
-
690
- np.array allows to specify whether the array is written in C-contiguous
691
- order (last index varies the fastest), or FORTRAN-contiguous order in
692
- memory (first index varies the fastest).
693
-
694
- >>> a = np.array([[1, 2, 3], [4, 5, 6]], order='C')
695
- >>> a
696
- array([[1, 2, 3],
697
- [4, 5, 6]])
698
- >>> np.isfortran(a)
699
- False
700
-
701
- >>> b = np.array([[1, 2, 3], [4, 5, 6]], order='FORTRAN')
702
- >>> b
703
- array([[1, 2, 3],
704
- [4, 5, 6]])
705
- >>> np.isfortran(b)
706
- True
707
-
708
-
709
- The transpose of a C-ordered array is a FORTRAN-ordered array.
710
-
711
- >>> a = np.array([[1, 2, 3], [4, 5, 6]], order='C')
712
- >>> a
713
- array([[1, 2, 3],
714
- [4, 5, 6]])
715
- >>> np.isfortran(a)
716
- False
717
- >>> b = a.T
718
- >>> b
719
- array([[1, 4],
720
- [2, 5],
721
- [3, 6]])
722
- >>> np.isfortran(b)
723
- True
724
-
725
- C-ordered arrays evaluate as False even if they are also FORTRAN-ordered.
726
-
727
- >>> np.isfortran(np.array([1, 2], order='FORTRAN'))
728
- False
729
-
730
- """
731
- return a.flags.fnc
732
-
733
- def argwhere(a):
734
- """
735
- Find the indices of array elements that are non-zero, grouped by element.
736
-
737
- Parameters
738
- ----------
739
- a : array_like
740
- Input data.
741
-
742
- Returns
743
- -------
744
- index_array : ndarray
745
- Indices of elements that are non-zero. Indices are grouped by element.
746
-
747
- See Also
748
- --------
749
- where, nonzero
750
-
751
- Notes
752
- -----
753
- ``np.argwhere(a)`` is the same as ``np.transpose(np.nonzero(a))``.
754
-
755
- The output of ``argwhere`` is not suitable for indexing arrays.
756
- For this purpose use ``where(a)`` instead.
757
-
758
- Examples
759
- --------
760
- >>> x = np.arange(6).reshape(2,3)
761
- >>> x
762
- array([[0, 1, 2],
763
- [3, 4, 5]])
764
- >>> np.argwhere(x>1)
765
- array([[0, 2],
766
- [1, 0],
767
- [1, 1],
768
- [1, 2]])
769
-
770
- """
771
- return transpose(nonzero(a))
772
-
773
- def flatnonzero(a):
774
- """
775
- Return indices that are non-zero in the flattened version of a.
776
-
777
- This is equivalent to a.ravel().nonzero()[0].
778
-
779
- Parameters
780
- ----------
781
- a : ndarray
782
- Input array.
783
-
784
- Returns
785
- -------
786
- res : ndarray
787
- Output array, containing the indices of the elements of `a.ravel()`
788
- that are non-zero.
789
-
790
- See Also
791
- --------
792
- nonzero : Return the indices of the non-zero elements of the input array.
793
- ravel : Return a 1-D array containing the elements of the input array.
794
-
795
- Examples
796
- --------
797
- >>> x = np.arange(-2, 3)
798
- >>> x
799
- array([-2, -1, 0, 1, 2])
800
- >>> np.flatnonzero(x)
801
- array([0, 1, 3, 4])
802
-
803
- Use the indices of the non-zero elements as an index array to extract
804
- these elements:
805
-
806
- >>> x.ravel()[np.flatnonzero(x)]
807
- array([-2, -1, 1, 2])
808
-
809
- """
810
- return a.ravel().nonzero()[0]
811
-
812
- _mode_from_name_dict = {'v': 0,
813
- 's' : 1,
814
- 'f' : 2}
815
-
816
- def _mode_from_name(mode):
817
- if isinstance(mode, basestring):
818
- return _mode_from_name_dict[mode.lower()[0]]
819
- return mode
820
-
821
- def correlate(a, v, mode='valid', old_behavior=False):
822
- """
823
- Cross-correlation of two 1-dimensional sequences.
824
-
825
- This function computes the correlation as generally defined in signal
826
- processing texts::
827
-
828
- c_{av}[k] = sum_n a[n+k] * conj(v[n])
829
-
830
- with a and v sequences being zero-padded where necessary and conj being
831
- the conjugate.
832
-
833
- Parameters
834
- ----------
835
- a, v : array_like
836
- Input sequences.
837
- mode : {'valid', 'same', 'full'}, optional
838
- Refer to the `convolve` docstring. Note that the default
839
- is `valid`, unlike `convolve`, which uses `full`.
840
- old_behavior : bool
841
- If True, uses the old behavior from Numeric,
842
- (correlate(a,v) == correlate(v,a), and the conjugate is not taken
843
- for complex arrays). If False, uses the conventional signal
844
- processing definition.
845
-
846
- Returns
847
- -------
848
- out : ndarray
849
- Discrete cross-correlation of `a` and `v`.
850
-
851
- See Also
852
- --------
853
- convolve : Discrete, linear convolution of two one-dimensional sequences.
854
-
855
- Notes
856
- -----
857
- The definition of correlation above is not unique and sometimes correlation
858
- may be defined differently. Another common definition is::
859
-
860
- c'_{av}[k] = sum_n a[n] conj(v[n+k])
861
-
862
- which is related to ``c_{av}[k]`` by ``c'_{av}[k] = c_{av}[-k]``.
863
-
864
- Examples
865
- --------
866
- >>> np.correlate([1, 2, 3], [0, 1, 0.5])
867
- array([ 3.5])
868
- >>> np.correlate([1, 2, 3], [0, 1, 0.5], "same")
869
- array([ 2. , 3.5, 3. ])
870
- >>> np.correlate([1, 2, 3], [0, 1, 0.5], "full")
871
- array([ 0.5, 2. , 3.5, 3. , 0. ])
872
-
873
- Using complex sequences:
874
-
875
- >>> np.correlate([1+1j, 2, 3-1j], [0, 1, 0.5j], 'full')
876
- array([ 0.5-0.5j, 1.0+0.j , 1.5-1.5j, 3.0-1.j , 0.0+0.j ])
877
-
878
- Note that you get the time reversed, complex conjugated result
879
- when the two input sequences change places, i.e.,
880
- ``c_{va}[k] = c^{*}_{av}[-k]``:
881
-
882
- >>> np.correlate([0, 1, 0.5j], [1+1j, 2, 3-1j], 'full')
883
- array([ 0.0+0.j , 3.0+1.j , 1.5+1.5j, 1.0+0.j , 0.5+0.5j])
884
-
885
- """
886
- mode = _mode_from_name(mode)
887
- # the old behavior should be made available under a different name, see thread
888
- # http://thread.gmane.org/gmane.comp.python.numeric.general/12609/focus=12630
889
- if old_behavior:
890
- warnings.warn("""
891
- The old behavior of correlate was deprecated for 1.4.0, and will be completely removed
892
- for NumPy 2.0.
893
-
894
- The new behavior fits the conventional definition of correlation: inputs are
895
- never swapped, and the second argument is conjugated for complex arrays.""",
896
- DeprecationWarning)
897
- return multiarray.correlate(a, v, mode)
898
- else:
899
- return multiarray.correlate2(a, v, mode)
900
-
901
- def convolve(a,v,mode='full'):
902
- """
903
- Returns the discrete, linear convolution of two one-dimensional sequences.
904
-
905
- The convolution operator is often seen in signal processing, where it
906
- models the effect of a linear time-invariant system on a signal [1]_. In
907
- probability theory, the sum of two independent random variables is
908
- distributed according to the convolution of their individual
909
- distributions.
910
-
911
- If `v` is longer than `a`, the arrays are swapped before computation.
912
-
913
- Parameters
914
- ----------
915
- a : (N,) array_like
916
- First one-dimensional input array.
917
- v : (M,) array_like
918
- Second one-dimensional input array.
919
- mode : {'full', 'valid', 'same'}, optional
920
- 'full':
921
- By default, mode is 'full'. This returns the convolution
922
- at each point of overlap, with an output shape of (N+M-1,). At
923
- the end-points of the convolution, the signals do not overlap
924
- completely, and boundary effects may be seen.
925
-
926
- 'same':
927
- Mode `same` returns output of length ``max(M, N)``. Boundary
928
- effects are still visible.
929
-
930
- 'valid':
931
- Mode `valid` returns output of length
932
- ``max(M, N) - min(M, N) + 1``. The convolution product is only given
933
- for points where the signals overlap completely. Values outside
934
- the signal boundary have no effect.
935
-
936
- Returns
937
- -------
938
- out : ndarray
939
- Discrete, linear convolution of `a` and `v`.
940
-
941
- See Also
942
- --------
943
- scipy.signal.fftconvolve : Convolve two arrays using the Fast Fourier
944
- Transform.
945
- scipy.linalg.toeplitz : Used to construct the convolution operator.
946
- polymul : Polynomial multiplication. Same output as convolve, but also
947
- accepts poly1d objects as input.
948
-
949
- Notes
950
- -----
951
- The discrete convolution operation is defined as
952
-
953
- .. math:: (a * v)[n] = \\sum_{m = -\\infty}^{\\infty} a[m] v[n - m]
954
-
955
- It can be shown that a convolution :math:`x(t) * y(t)` in time/space
956
- is equivalent to the multiplication :math:`X(f) Y(f)` in the Fourier
957
- domain, after appropriate padding (padding is necessary to prevent
958
- circular convolution). Since multiplication is more efficient (faster)
959
- than convolution, the function `scipy.signal.fftconvolve` exploits the
960
- FFT to calculate the convolution of large data-sets.
961
-
962
- References
963
- ----------
964
- .. [1] Wikipedia, "Convolution", http://en.wikipedia.org/wiki/Convolution.
965
-
966
- Examples
967
- --------
968
- Note how the convolution operator flips the second array
969
- before "sliding" the two across one another:
970
-
971
- >>> np.convolve([1, 2, 3], [0, 1, 0.5])
972
- array([ 0. , 1. , 2.5, 4. , 1.5])
973
-
974
- Only return the middle values of the convolution.
975
- Contains boundary effects, where zeros are taken
976
- into account:
977
-
978
- >>> np.convolve([1,2,3],[0,1,0.5], 'same')
979
- array([ 1. , 2.5, 4. ])
980
-
981
- The two arrays are of the same length, so there
982
- is only one position where they completely overlap:
983
-
984
- >>> np.convolve([1,2,3],[0,1,0.5], 'valid')
985
- array([ 2.5])
986
-
987
- """
988
- a, v = array(a, ndmin=1), array(v, ndmin=1)
989
- if (len(v) > len(a)):
990
- a, v = v, a
991
- if len(a) == 0 :
992
- raise ValueError('a cannot be empty')
993
- if len(v) == 0 :
994
- raise ValueError('v cannot be empty')
995
- mode = _mode_from_name(mode)
996
- return multiarray.correlate(a, v[::-1], mode)
997
-
998
- def outer(a, b, out=None):
999
- """
1000
- Compute the outer product of two vectors.
1001
-
1002
- Given two vectors, ``a = [a0, a1, ..., aM]`` and
1003
- ``b = [b0, b1, ..., bN]``,
1004
- the outer product [1]_ is::
1005
-
1006
- [[a0*b0 a0*b1 ... a0*bN ]
1007
- [a1*b0 .
1008
- [ ... .
1009
- [aM*b0 aM*bN ]]
1010
-
1011
- Parameters
1012
- ----------
1013
- a : (M,) array_like
1014
- First input vector. Input is flattened if
1015
- not already 1-dimensional.
1016
- b : (N,) array_like
1017
- Second input vector. Input is flattened if
1018
- not already 1-dimensional.
1019
- out : (M, N) ndarray, optional
1020
- A location where the result is stored
1021
-
1022
- .. versionadded:: 1.9.0
1023
-
1024
- Returns
1025
- -------
1026
- out : (M, N) ndarray
1027
- ``out[i, j] = a[i] * b[j]``
1028
-
1029
- See also
1030
- --------
1031
- inner, einsum
1032
-
1033
- References
1034
- ----------
1035
- .. [1] : G. H. Golub and C. F. van Loan, *Matrix Computations*, 3rd
1036
- ed., Baltimore, MD, Johns Hopkins University Press, 1996,
1037
- pg. 8.
1038
-
1039
- Examples
1040
- --------
1041
- Make a (*very* coarse) grid for computing a Mandelbrot set:
1042
-
1043
- >>> rl = np.outer(np.ones((5,)), np.linspace(-2, 2, 5))
1044
- >>> rl
1045
- array([[-2., -1., 0., 1., 2.],
1046
- [-2., -1., 0., 1., 2.],
1047
- [-2., -1., 0., 1., 2.],
1048
- [-2., -1., 0., 1., 2.],
1049
- [-2., -1., 0., 1., 2.]])
1050
- >>> im = np.outer(1j*np.linspace(2, -2, 5), np.ones((5,)))
1051
- >>> im
1052
- array([[ 0.+2.j, 0.+2.j, 0.+2.j, 0.+2.j, 0.+2.j],
1053
- [ 0.+1.j, 0.+1.j, 0.+1.j, 0.+1.j, 0.+1.j],
1054
- [ 0.+0.j, 0.+0.j, 0.+0.j, 0.+0.j, 0.+0.j],
1055
- [ 0.-1.j, 0.-1.j, 0.-1.j, 0.-1.j, 0.-1.j],
1056
- [ 0.-2.j, 0.-2.j, 0.-2.j, 0.-2.j, 0.-2.j]])
1057
- >>> grid = rl + im
1058
- >>> grid
1059
- array([[-2.+2.j, -1.+2.j, 0.+2.j, 1.+2.j, 2.+2.j],
1060
- [-2.+1.j, -1.+1.j, 0.+1.j, 1.+1.j, 2.+1.j],
1061
- [-2.+0.j, -1.+0.j, 0.+0.j, 1.+0.j, 2.+0.j],
1062
- [-2.-1.j, -1.-1.j, 0.-1.j, 1.-1.j, 2.-1.j],
1063
- [-2.-2.j, -1.-2.j, 0.-2.j, 1.-2.j, 2.-2.j]])
1064
-
1065
- An example using a "vector" of letters:
1066
-
1067
- >>> x = np.array(['a', 'b', 'c'], dtype=object)
1068
- >>> np.outer(x, [1, 2, 3])
1069
- array([[a, aa, aaa],
1070
- [b, bb, bbb],
1071
- [c, cc, ccc]], dtype=object)
1072
-
1073
- """
1074
- a = asarray(a)
1075
- b = asarray(b)
1076
- return multiply(a.ravel()[:, newaxis], b.ravel()[newaxis,:], out)
1077
-
1078
- # try to import blas optimized dot if available
1079
- envbak = os.environ.copy()
1080
- try:
1081
- # importing this changes the dot function for basic 4 types
1082
- # to blas-optimized versions.
1083
-
1084
- # disables openblas affinity setting of the main thread that limits
1085
- # python threads or processes to one core
1086
- if 'OPENBLAS_MAIN_FREE' not in os.environ:
1087
- os.environ['OPENBLAS_MAIN_FREE'] = '1'
1088
- if 'GOTOBLAS_MAIN_FREE' not in os.environ:
1089
- os.environ['GOTOBLAS_MAIN_FREE'] = '1'
1090
- from ._dotblas import dot, vdot, inner, alterdot, restoredot
1091
- except ImportError:
1092
- # docstrings are in add_newdocs.py
1093
- inner = multiarray.inner
1094
- dot = multiarray.dot
1095
- def vdot(a, b):
1096
- return dot(asarray(a).ravel().conj(), asarray(b).ravel())
1097
- def alterdot():
1098
- pass
1099
- def restoredot():
1100
- pass
1101
- finally:
1102
- os.environ.clear()
1103
- os.environ.update(envbak)
1104
- del envbak
1105
-
1106
- def tensordot(a, b, axes=2):
1107
- """
1108
- Compute tensor dot product along specified axes for arrays >= 1-D.
1109
-
1110
- Given two tensors (arrays of dimension greater than or equal to one),
1111
- `a` and `b`, and an array_like object containing two array_like
1112
- objects, ``(a_axes, b_axes)``, sum the products of `a`'s and `b`'s
1113
- elements (components) over the axes specified by ``a_axes`` and
1114
- ``b_axes``. The third argument can be a single non-negative
1115
- integer_like scalar, ``N``; if it is such, then the last ``N``
1116
- dimensions of `a` and the first ``N`` dimensions of `b` are summed
1117
- over.
1118
-
1119
- Parameters
1120
- ----------
1121
- a, b : array_like, len(shape) >= 1
1122
- Tensors to "dot".
1123
- axes : variable type
1124
- * integer_like scalar
1125
- Number of axes to sum over (applies to both arrays); or
1126
- * (2,) array_like, both elements array_like of the same length
1127
- List of axes to be summed over, first sequence applying to `a`,
1128
- second to `b`.
1129
-
1130
- See Also
1131
- --------
1132
- dot, einsum
1133
-
1134
- Notes
1135
- -----
1136
- When there is more than one axis to sum over - and they are not the last
1137
- (first) axes of `a` (`b`) - the argument `axes` should consist of
1138
- two sequences of the same length, with the first axis to sum over given
1139
- first in both sequences, the second axis second, and so forth.
1140
-
1141
- Examples
1142
- --------
1143
- A "traditional" example:
1144
-
1145
- >>> a = np.arange(60.).reshape(3,4,5)
1146
- >>> b = np.arange(24.).reshape(4,3,2)
1147
- >>> c = np.tensordot(a,b, axes=([1,0],[0,1]))
1148
- >>> c.shape
1149
- (5, 2)
1150
- >>> c
1151
- array([[ 4400., 4730.],
1152
- [ 4532., 4874.],
1153
- [ 4664., 5018.],
1154
- [ 4796., 5162.],
1155
- [ 4928., 5306.]])
1156
- >>> # A slower but equivalent way of computing the same...
1157
- >>> d = np.zeros((5,2))
1158
- >>> for i in range(5):
1159
- ... for j in range(2):
1160
- ... for k in range(3):
1161
- ... for n in range(4):
1162
- ... d[i,j] += a[k,n,i] * b[n,k,j]
1163
- >>> c == d
1164
- array([[ True, True],
1165
- [ True, True],
1166
- [ True, True],
1167
- [ True, True],
1168
- [ True, True]], dtype=bool)
1169
-
1170
- An extended example taking advantage of the overloading of + and \\*:
1171
-
1172
- >>> a = np.array(range(1, 9))
1173
- >>> a.shape = (2, 2, 2)
1174
- >>> A = np.array(('a', 'b', 'c', 'd'), dtype=object)
1175
- >>> A.shape = (2, 2)
1176
- >>> a; A
1177
- array([[[1, 2],
1178
- [3, 4]],
1179
- [[5, 6],
1180
- [7, 8]]])
1181
- array([[a, b],
1182
- [c, d]], dtype=object)
1183
-
1184
- >>> np.tensordot(a, A) # third argument default is 2
1185
- array([abbcccdddd, aaaaabbbbbbcccccccdddddddd], dtype=object)
1186
-
1187
- >>> np.tensordot(a, A, 1)
1188
- array([[[acc, bdd],
1189
- [aaacccc, bbbdddd]],
1190
- [[aaaaacccccc, bbbbbdddddd],
1191
- [aaaaaaacccccccc, bbbbbbbdddddddd]]], dtype=object)
1192
-
1193
- >>> np.tensordot(a, A, 0) # "Left for reader" (result too long to incl.)
1194
- array([[[[[a, b],
1195
- [c, d]],
1196
- ...
1197
-
1198
- >>> np.tensordot(a, A, (0, 1))
1199
- array([[[abbbbb, cddddd],
1200
- [aabbbbbb, ccdddddd]],
1201
- [[aaabbbbbbb, cccddddddd],
1202
- [aaaabbbbbbbb, ccccdddddddd]]], dtype=object)
1203
-
1204
- >>> np.tensordot(a, A, (2, 1))
1205
- array([[[abb, cdd],
1206
- [aaabbbb, cccdddd]],
1207
- [[aaaaabbbbbb, cccccdddddd],
1208
- [aaaaaaabbbbbbbb, cccccccdddddddd]]], dtype=object)
1209
-
1210
- >>> np.tensordot(a, A, ((0, 1), (0, 1)))
1211
- array([abbbcccccddddddd, aabbbbccccccdddddddd], dtype=object)
1212
-
1213
- >>> np.tensordot(a, A, ((2, 1), (1, 0)))
1214
- array([acccbbdddd, aaaaacccccccbbbbbbdddddddd], dtype=object)
1215
-
1216
- """
1217
- try:
1218
- iter(axes)
1219
- except:
1220
- axes_a = list(range(-axes, 0))
1221
- axes_b = list(range(0, axes))
1222
- else:
1223
- axes_a, axes_b = axes
1224
- try:
1225
- na = len(axes_a)
1226
- axes_a = list(axes_a)
1227
- except TypeError:
1228
- axes_a = [axes_a]
1229
- na = 1
1230
- try:
1231
- nb = len(axes_b)
1232
- axes_b = list(axes_b)
1233
- except TypeError:
1234
- axes_b = [axes_b]
1235
- nb = 1
1236
-
1237
- a, b = asarray(a), asarray(b)
1238
- as_ = a.shape
1239
- nda = len(a.shape)
1240
- bs = b.shape
1241
- ndb = len(b.shape)
1242
- equal = True
1243
- if (na != nb): equal = False
1244
- else:
1245
- for k in range(na):
1246
- if as_[axes_a[k]] != bs[axes_b[k]]:
1247
- equal = False
1248
- break
1249
- if axes_a[k] < 0:
1250
- axes_a[k] += nda
1251
- if axes_b[k] < 0:
1252
- axes_b[k] += ndb
1253
- if not equal:
1254
- raise ValueError("shape-mismatch for sum")
1255
-
1256
- # Move the axes to sum over to the end of "a"
1257
- # and to the front of "b"
1258
- notin = [k for k in range(nda) if k not in axes_a]
1259
- newaxes_a = notin + axes_a
1260
- N2 = 1
1261
- for axis in axes_a:
1262
- N2 *= as_[axis]
1263
- newshape_a = (-1, N2)
1264
- olda = [as_[axis] for axis in notin]
1265
-
1266
- notin = [k for k in range(ndb) if k not in axes_b]
1267
- newaxes_b = axes_b + notin
1268
- N2 = 1
1269
- for axis in axes_b:
1270
- N2 *= bs[axis]
1271
- newshape_b = (N2, -1)
1272
- oldb = [bs[axis] for axis in notin]
1273
-
1274
- at = a.transpose(newaxes_a).reshape(newshape_a)
1275
- bt = b.transpose(newaxes_b).reshape(newshape_b)
1276
- res = dot(at, bt)
1277
- return res.reshape(olda + oldb)
1278
-
1279
- def roll(a, shift, axis=None):
1280
- """
1281
- Roll array elements along a given axis.
1282
-
1283
- Elements that roll beyond the last position are re-introduced at
1284
- the first.
1285
-
1286
- Parameters
1287
- ----------
1288
- a : array_like
1289
- Input array.
1290
- shift : int
1291
- The number of places by which elements are shifted.
1292
- axis : int, optional
1293
- The axis along which elements are shifted. By default, the array
1294
- is flattened before shifting, after which the original
1295
- shape is restored.
1296
-
1297
- Returns
1298
- -------
1299
- res : ndarray
1300
- Output array, with the same shape as `a`.
1301
-
1302
- See Also
1303
- --------
1304
- rollaxis : Roll the specified axis backwards, until it lies in a
1305
- given position.
1306
-
1307
- Examples
1308
- --------
1309
- >>> x = np.arange(10)
1310
- >>> np.roll(x, 2)
1311
- array([8, 9, 0, 1, 2, 3, 4, 5, 6, 7])
1312
-
1313
- >>> x2 = np.reshape(x, (2,5))
1314
- >>> x2
1315
- array([[0, 1, 2, 3, 4],
1316
- [5, 6, 7, 8, 9]])
1317
- >>> np.roll(x2, 1)
1318
- array([[9, 0, 1, 2, 3],
1319
- [4, 5, 6, 7, 8]])
1320
- >>> np.roll(x2, 1, axis=0)
1321
- array([[5, 6, 7, 8, 9],
1322
- [0, 1, 2, 3, 4]])
1323
- >>> np.roll(x2, 1, axis=1)
1324
- array([[4, 0, 1, 2, 3],
1325
- [9, 5, 6, 7, 8]])
1326
-
1327
- """
1328
- a = asanyarray(a)
1329
- if axis is None:
1330
- n = a.size
1331
- reshape = True
1332
- else:
1333
- try:
1334
- n = a.shape[axis]
1335
- except IndexError:
1336
- raise ValueError('axis must be >= 0 and < %d' % a.ndim)
1337
- reshape = False
1338
- if n == 0:
1339
- return a
1340
- shift %= n
1341
- indexes = concatenate((arange(n - shift, n), arange(n - shift)))
1342
- res = a.take(indexes, axis)
1343
- if reshape:
1344
- res = res.reshape(a.shape)
1345
- return res
1346
-
1347
- def rollaxis(a, axis, start=0):
1348
- """
1349
- Roll the specified axis backwards, until it lies in a given position.
1350
-
1351
- Parameters
1352
- ----------
1353
- a : ndarray
1354
- Input array.
1355
- axis : int
1356
- The axis to roll backwards. The positions of the other axes do not
1357
- change relative to one another.
1358
- start : int, optional
1359
- The axis is rolled until it lies before this position. The default,
1360
- 0, results in a "complete" roll.
1361
-
1362
- Returns
1363
- -------
1364
- res : ndarray
1365
- Output array.
1366
-
1367
- See Also
1368
- --------
1369
- roll : Roll the elements of an array by a number of positions along a
1370
- given axis.
1371
-
1372
- Examples
1373
- --------
1374
- >>> a = np.ones((3,4,5,6))
1375
- >>> np.rollaxis(a, 3, 1).shape
1376
- (3, 6, 4, 5)
1377
- >>> np.rollaxis(a, 2).shape
1378
- (5, 3, 4, 6)
1379
- >>> np.rollaxis(a, 1, 4).shape
1380
- (3, 5, 6, 4)
1381
-
1382
- """
1383
- n = a.ndim
1384
- if axis < 0:
1385
- axis += n
1386
- if start < 0:
1387
- start += n
1388
- msg = 'rollaxis: %s (%d) must be >=0 and < %d'
1389
- if not (0 <= axis < n):
1390
- raise ValueError(msg % ('axis', axis, n))
1391
- if not (0 <= start < n+1):
1392
- raise ValueError(msg % ('start', start, n+1))
1393
- if (axis < start): # it's been removed
1394
- start -= 1
1395
- if axis==start:
1396
- return a
1397
- axes = list(range(0, n))
1398
- axes.remove(axis)
1399
- axes.insert(start, axis)
1400
- return a.transpose(axes)
1401
-
1402
- # fix hack in scipy which imports this function
1403
- def _move_axis_to_0(a, axis):
1404
- return rollaxis(a, axis, 0)
1405
-
1406
- def cross(a, b, axisa=-1, axisb=-1, axisc=-1, axis=None):
1407
- """
1408
- Return the cross product of two (arrays of) vectors.
1409
-
1410
- The cross product of `a` and `b` in :math:`R^3` is a vector perpendicular
1411
- to both `a` and `b`. If `a` and `b` are arrays of vectors, the vectors
1412
- are defined by the last axis of `a` and `b` by default, and these axes
1413
- can have dimensions 2 or 3. Where the dimension of either `a` or `b` is
1414
- 2, the third component of the input vector is assumed to be zero and the
1415
- cross product calculated accordingly. In cases where both input vectors
1416
- have dimension 2, the z-component of the cross product is returned.
1417
-
1418
- Parameters
1419
- ----------
1420
- a : array_like
1421
- Components of the first vector(s).
1422
- b : array_like
1423
- Components of the second vector(s).
1424
- axisa : int, optional
1425
- Axis of `a` that defines the vector(s). By default, the last axis.
1426
- axisb : int, optional
1427
- Axis of `b` that defines the vector(s). By default, the last axis.
1428
- axisc : int, optional
1429
- Axis of `c` containing the cross product vector(s). By default, the
1430
- last axis.
1431
- axis : int, optional
1432
- If defined, the axis of `a`, `b` and `c` that defines the vector(s)
1433
- and cross product(s). Overrides `axisa`, `axisb` and `axisc`.
1434
-
1435
- Returns
1436
- -------
1437
- c : ndarray
1438
- Vector cross product(s).
1439
-
1440
- Raises
1441
- ------
1442
- ValueError
1443
- When the dimension of the vector(s) in `a` and/or `b` does not
1444
- equal 2 or 3.
1445
-
1446
- See Also
1447
- --------
1448
- inner : Inner product
1449
- outer : Outer product.
1450
- ix_ : Construct index arrays.
1451
-
1452
- Notes
1453
- -----
1454
- .. versionadded:: 1.9.0
1455
- Supports full broadcasting of the inputs.
1456
-
1457
- Examples
1458
- --------
1459
- Vector cross-product.
1460
-
1461
- >>> x = [1, 2, 3]
1462
- >>> y = [4, 5, 6]
1463
- >>> np.cross(x, y)
1464
- array([-3, 6, -3])
1465
-
1466
- One vector with dimension 2.
1467
-
1468
- >>> x = [1, 2]
1469
- >>> y = [4, 5, 6]
1470
- >>> np.cross(x, y)
1471
- array([12, -6, -3])
1472
-
1473
- Equivalently:
1474
-
1475
- >>> x = [1, 2, 0]
1476
- >>> y = [4, 5, 6]
1477
- >>> np.cross(x, y)
1478
- array([12, -6, -3])
1479
-
1480
- Both vectors with dimension 2.
1481
-
1482
- >>> x = [1,2]
1483
- >>> y = [4,5]
1484
- >>> np.cross(x, y)
1485
- -3
1486
-
1487
- Multiple vector cross-products. Note that the direction of the cross
1488
- product vector is defined by the `right-hand rule`.
1489
-
1490
- >>> x = np.array([[1,2,3], [4,5,6]])
1491
- >>> y = np.array([[4,5,6], [1,2,3]])
1492
- >>> np.cross(x, y)
1493
- array([[-3, 6, -3],
1494
- [ 3, -6, 3]])
1495
-
1496
- The orientation of `c` can be changed using the `axisc` keyword.
1497
-
1498
- >>> np.cross(x, y, axisc=0)
1499
- array([[-3, 3],
1500
- [ 6, -6],
1501
- [-3, 3]])
1502
-
1503
- Change the vector definition of `x` and `y` using `axisa` and `axisb`.
1504
-
1505
- >>> x = np.array([[1,2,3], [4,5,6], [7, 8, 9]])
1506
- >>> y = np.array([[7, 8, 9], [4,5,6], [1,2,3]])
1507
- >>> np.cross(x, y)
1508
- array([[ -6, 12, -6],
1509
- [ 0, 0, 0],
1510
- [ 6, -12, 6]])
1511
- >>> np.cross(x, y, axisa=0, axisb=0)
1512
- array([[-24, 48, -24],
1513
- [-30, 60, -30],
1514
- [-36, 72, -36]])
1515
-
1516
- """
1517
- if axis is not None:
1518
- axisa, axisb, axisc = (axis,) * 3
1519
- a = asarray(a)
1520
- b = asarray(b)
1521
- # Move working axis to the end of the shape
1522
- a = rollaxis(a, axisa, a.ndim)
1523
- b = rollaxis(b, axisb, b.ndim)
1524
- msg = ("incompatible dimensions for cross product\n"
1525
- "(dimension must be 2 or 3)")
1526
- if a.shape[-1] not in (2, 3) or b.shape[-1] not in (2, 3):
1527
- raise ValueError(msg)
1528
-
1529
- # Create the output array
1530
- shape = broadcast(a[..., 0], b[..., 0]).shape
1531
- if a.shape[-1] == 3 or b.shape[-1] == 3:
1532
- shape += (3,)
1533
- dtype = promote_types(a.dtype, b.dtype)
1534
- cp = empty(shape, dtype)
1535
-
1536
- # create local aliases for readability
1537
- a0 = a[..., 0]
1538
- a1 = a[..., 1]
1539
- if a.shape[-1] == 3:
1540
- a2 = a[..., 2]
1541
- b0 = b[..., 0]
1542
- b1 = b[..., 1]
1543
- if b.shape[-1] == 3:
1544
- b2 = b[..., 2]
1545
- if cp.ndim != 0 and cp.shape[-1] == 3:
1546
- cp0 = cp[..., 0]
1547
- cp1 = cp[..., 1]
1548
- cp2 = cp[..., 2]
1549
-
1550
- if a.shape[-1] == 2:
1551
- if b.shape[-1] == 2:
1552
- # a0 * b1 - a1 * b0
1553
- multiply(a0, b1, out=cp)
1554
- cp -= a1 * b0
1555
- if cp.ndim == 0:
1556
- return cp
1557
- else:
1558
- # This works because we are moving the last axis
1559
- return rollaxis(cp, -1, axisc)
1560
- else:
1561
- # cp0 = a1 * b2 - 0 (a2 = 0)
1562
- # cp1 = 0 - a0 * b2 (a2 = 0)
1563
- # cp2 = a0 * b1 - a1 * b0
1564
- multiply(a1, b2, out=cp0)
1565
- multiply(a0, b2, out=cp1)
1566
- negative(cp1, out=cp1)
1567
- multiply(a0, b1, out=cp2)
1568
- cp2 -= a1 * b0
1569
- elif a.shape[-1] == 3:
1570
- if b.shape[-1] == 3:
1571
- # cp0 = a1 * b2 - a2 * b1
1572
- # cp1 = a2 * b0 - a0 * b2
1573
- # cp2 = a0 * b1 - a1 * b0
1574
- multiply(a1, b2, out=cp0)
1575
- tmp = array(a2 * b1)
1576
- cp0 -= tmp
1577
- multiply(a2, b0, out=cp1)
1578
- multiply(a0, b2, out=tmp)
1579
- cp1 -= tmp
1580
- multiply(a0, b1, out=cp2)
1581
- multiply(a1, b0, out=tmp)
1582
- cp2 -= tmp
1583
- else:
1584
- # cp0 = 0 - a2 * b1 (b2 = 0)
1585
- # cp1 = a2 * b0 - 0 (b2 = 0)
1586
- # cp2 = a0 * b1 - a1 * b0
1587
- multiply(a2, b1, out=cp0)
1588
- negative(cp0, out=cp0)
1589
- multiply(a2, b0, out=cp1)
1590
- multiply(a0, b1, out=cp2)
1591
- cp2 -= a1 * b0
1592
-
1593
- if cp.ndim == 1:
1594
- return cp
1595
- else:
1596
- # This works because we are moving the last axis
1597
- return rollaxis(cp, -1, axisc)
1598
-
1599
- #Use numarray's printing function
1600
- from .arrayprint import array2string, get_printoptions, set_printoptions
1601
-
1602
- _typelessdata = [int_, float_, complex_]
1603
- if issubclass(intc, int):
1604
- _typelessdata.append(intc)
1605
-
1606
- if issubclass(longlong, int):
1607
- _typelessdata.append(longlong)
1608
-
1609
- def array_repr(arr, max_line_width=None, precision=None, suppress_small=None):
1610
- """
1611
- Return the string representation of an array.
1612
-
1613
- Parameters
1614
- ----------
1615
- arr : ndarray
1616
- Input array.
1617
- max_line_width : int, optional
1618
- The maximum number of columns the string should span. Newline
1619
- characters split the string appropriately after array elements.
1620
- precision : int, optional
1621
- Floating point precision. Default is the current printing precision
1622
- (usually 8), which can be altered using `set_printoptions`.
1623
- suppress_small : bool, optional
1624
- Represent very small numbers as zero, default is False. Very small
1625
- is defined by `precision`, if the precision is 8 then
1626
- numbers smaller than 5e-9 are represented as zero.
1627
-
1628
- Returns
1629
- -------
1630
- string : str
1631
- The string representation of an array.
1632
-
1633
- See Also
1634
- --------
1635
- array_str, array2string, set_printoptions
1636
-
1637
- Examples
1638
- --------
1639
- >>> np.array_repr(np.array([1,2]))
1640
- 'array([1, 2])'
1641
- >>> np.array_repr(np.ma.array([0.]))
1642
- 'MaskedArray([ 0.])'
1643
- >>> np.array_repr(np.array([], np.int32))
1644
- 'array([], dtype=int32)'
1645
-
1646
- >>> x = np.array([1e-6, 4e-7, 2, 3])
1647
- >>> np.array_repr(x, precision=6, suppress_small=True)
1648
- 'array([ 0.000001, 0. , 2. , 3. ])'
1649
-
1650
- """
1651
- if arr.size > 0 or arr.shape==(0,):
1652
- lst = array2string(arr, max_line_width, precision, suppress_small,
1653
- ', ', "array(")
1654
- else: # show zero-length shape unless it is (0,)
1655
- lst = "[], shape=%s" % (repr(arr.shape),)
1656
-
1657
- if arr.__class__ is not ndarray:
1658
- cName= arr.__class__.__name__
1659
- else:
1660
- cName = "array"
1661
-
1662
- skipdtype = (arr.dtype.type in _typelessdata) and arr.size > 0
1663
-
1664
- if skipdtype:
1665
- return "%s(%s)" % (cName, lst)
1666
- else:
1667
- typename = arr.dtype.name
1668
- # Quote typename in the output if it is "complex".
1669
- if typename and not (typename[0].isalpha() and typename.isalnum()):
1670
- typename = "'%s'" % typename
1671
-
1672
- lf = ''
1673
- if issubclass(arr.dtype.type, flexible):
1674
- if arr.dtype.names:
1675
- typename = "%s" % str(arr.dtype)
1676
- else:
1677
- typename = "'%s'" % str(arr.dtype)
1678
- lf = '\n'+' '*len("array(")
1679
- return cName + "(%s, %sdtype=%s)" % (lst, lf, typename)
1680
-
1681
- def array_str(a, max_line_width=None, precision=None, suppress_small=None):
1682
- """
1683
- Return a string representation of the data in an array.
1684
-
1685
- The data in the array is returned as a single string. This function is
1686
- similar to `array_repr`, the difference being that `array_repr` also
1687
- returns information on the kind of array and its data type.
1688
-
1689
- Parameters
1690
- ----------
1691
- a : ndarray
1692
- Input array.
1693
- max_line_width : int, optional
1694
- Inserts newlines if text is longer than `max_line_width`. The
1695
- default is, indirectly, 75.
1696
- precision : int, optional
1697
- Floating point precision. Default is the current printing precision
1698
- (usually 8), which can be altered using `set_printoptions`.
1699
- suppress_small : bool, optional
1700
- Represent numbers "very close" to zero as zero; default is False.
1701
- Very close is defined by precision: if the precision is 8, e.g.,
1702
- numbers smaller (in absolute value) than 5e-9 are represented as
1703
- zero.
1704
-
1705
- See Also
1706
- --------
1707
- array2string, array_repr, set_printoptions
1708
-
1709
- Examples
1710
- --------
1711
- >>> np.array_str(np.arange(3))
1712
- '[0 1 2]'
1713
-
1714
- """
1715
- return array2string(a, max_line_width, precision, suppress_small, ' ', "", str)
1716
-
1717
- def set_string_function(f, repr=True):
1718
- """
1719
- Set a Python function to be used when pretty printing arrays.
1720
-
1721
- Parameters
1722
- ----------
1723
- f : function or None
1724
- Function to be used to pretty print arrays. The function should expect
1725
- a single array argument and return a string of the representation of
1726
- the array. If None, the function is reset to the default NumPy function
1727
- to print arrays.
1728
- repr : bool, optional
1729
- If True (default), the function for pretty printing (``__repr__``)
1730
- is set, if False the function that returns the default string
1731
- representation (``__str__``) is set.
1732
-
1733
- See Also
1734
- --------
1735
- set_printoptions, get_printoptions
1736
-
1737
- Examples
1738
- --------
1739
- >>> def pprint(arr):
1740
- ... return 'HA! - What are you going to do now?'
1741
- ...
1742
- >>> np.set_string_function(pprint)
1743
- >>> a = np.arange(10)
1744
- >>> a
1745
- HA! - What are you going to do now?
1746
- >>> print a
1747
- [0 1 2 3 4 5 6 7 8 9]
1748
-
1749
- We can reset the function to the default:
1750
-
1751
- >>> np.set_string_function(None)
1752
- >>> a
1753
- array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
1754
-
1755
- `repr` affects either pretty printing or normal string representation.
1756
- Note that ``__repr__`` is still affected by setting ``__str__``
1757
- because the width of each array element in the returned string becomes
1758
- equal to the length of the result of ``__str__()``.
1759
-
1760
- >>> x = np.arange(4)
1761
- >>> np.set_string_function(lambda x:'random', repr=False)
1762
- >>> x.__str__()
1763
- 'random'
1764
- >>> x.__repr__()
1765
- 'array([ 0, 1, 2, 3])'
1766
-
1767
- """
1768
- if f is None:
1769
- if repr:
1770
- return multiarray.set_string_function(array_repr, 1)
1771
- else:
1772
- return multiarray.set_string_function(array_str, 0)
1773
- else:
1774
- return multiarray.set_string_function(f, repr)
1775
-
1776
- set_string_function(array_str, 0)
1777
- set_string_function(array_repr, 1)
1778
-
1779
- little_endian = (sys.byteorder == 'little')
1780
-
1781
-
1782
- def indices(dimensions, dtype=int):
1783
- """
1784
- Return an array representing the indices of a grid.
1785
-
1786
- Compute an array where the subarrays contain index values 0,1,...
1787
- varying only along the corresponding axis.
1788
-
1789
- Parameters
1790
- ----------
1791
- dimensions : sequence of ints
1792
- The shape of the grid.
1793
- dtype : dtype, optional
1794
- Data type of the result.
1795
-
1796
- Returns
1797
- -------
1798
- grid : ndarray
1799
- The array of grid indices,
1800
- ``grid.shape = (len(dimensions),) + tuple(dimensions)``.
1801
-
1802
- See Also
1803
- --------
1804
- mgrid, meshgrid
1805
-
1806
- Notes
1807
- -----
1808
- The output shape is obtained by prepending the number of dimensions
1809
- in front of the tuple of dimensions, i.e. if `dimensions` is a tuple
1810
- ``(r0, ..., rN-1)`` of length ``N``, the output shape is
1811
- ``(N,r0,...,rN-1)``.
1812
-
1813
- The subarrays ``grid[k]`` contains the N-D array of indices along the
1814
- ``k-th`` axis. Explicitly::
1815
-
1816
- grid[k,i0,i1,...,iN-1] = ik
1817
-
1818
- Examples
1819
- --------
1820
- >>> grid = np.indices((2, 3))
1821
- >>> grid.shape
1822
- (2, 2, 3)
1823
- >>> grid[0] # row indices
1824
- array([[0, 0, 0],
1825
- [1, 1, 1]])
1826
- >>> grid[1] # column indices
1827
- array([[0, 1, 2],
1828
- [0, 1, 2]])
1829
-
1830
- The indices can be used as an index into an array.
1831
-
1832
- >>> x = np.arange(20).reshape(5, 4)
1833
- >>> row, col = np.indices((2, 3))
1834
- >>> x[row, col]
1835
- array([[0, 1, 2],
1836
- [4, 5, 6]])
1837
-
1838
- Note that it would be more straightforward in the above example to
1839
- extract the required elements directly with ``x[:2, :3]``.
1840
-
1841
- """
1842
- dimensions = tuple(dimensions)
1843
- N = len(dimensions)
1844
- if N == 0:
1845
- return array([], dtype=dtype)
1846
- res = empty((N,)+dimensions, dtype=dtype)
1847
- for i, dim in enumerate(dimensions):
1848
- tmp = arange(dim, dtype=dtype)
1849
- tmp.shape = (1,)*i + (dim,)+(1,)*(N-i-1)
1850
- newdim = dimensions[:i] + (1,)+ dimensions[i+1:]
1851
- val = zeros(newdim, dtype)
1852
- add(tmp, val, res[i])
1853
- return res
1854
-
1855
- def fromfunction(function, shape, **kwargs):
1856
- """
1857
- Construct an array by executing a function over each coordinate.
1858
-
1859
- The resulting array therefore has a value ``fn(x, y, z)`` at
1860
- coordinate ``(x, y, z)``.
1861
-
1862
- Parameters
1863
- ----------
1864
- function : callable
1865
- The function is called with N parameters, where N is the rank of
1866
- `shape`. Each parameter represents the coordinates of the array
1867
- varying along a specific axis. For example, if `shape`
1868
- were ``(2, 2)``, then the parameters in turn be (0, 0), (0, 1),
1869
- (1, 0), (1, 1).
1870
- shape : (N,) tuple of ints
1871
- Shape of the output array, which also determines the shape of
1872
- the coordinate arrays passed to `function`.
1873
- dtype : data-type, optional
1874
- Data-type of the coordinate arrays passed to `function`.
1875
- By default, `dtype` is float.
1876
-
1877
- Returns
1878
- -------
1879
- fromfunction : any
1880
- The result of the call to `function` is passed back directly.
1881
- Therefore the shape of `fromfunction` is completely determined by
1882
- `function`. If `function` returns a scalar value, the shape of
1883
- `fromfunction` would match the `shape` parameter.
1884
-
1885
- See Also
1886
- --------
1887
- indices, meshgrid
1888
-
1889
- Notes
1890
- -----
1891
- Keywords other than `dtype` are passed to `function`.
1892
-
1893
- Examples
1894
- --------
1895
- >>> np.fromfunction(lambda i, j: i == j, (3, 3), dtype=int)
1896
- array([[ True, False, False],
1897
- [False, True, False],
1898
- [False, False, True]], dtype=bool)
1899
-
1900
- >>> np.fromfunction(lambda i, j: i + j, (3, 3), dtype=int)
1901
- array([[0, 1, 2],
1902
- [1, 2, 3],
1903
- [2, 3, 4]])
1904
-
1905
- """
1906
- dtype = kwargs.pop('dtype', float)
1907
- args = indices(shape, dtype=dtype)
1908
- return function(*args,**kwargs)
1909
-
1910
- def isscalar(num):
1911
- """
1912
- Returns True if the type of `num` is a scalar type.
1913
-
1914
- Parameters
1915
- ----------
1916
- num : any
1917
- Input argument, can be of any type and shape.
1918
-
1919
- Returns
1920
- -------
1921
- val : bool
1922
- True if `num` is a scalar type, False if it is not.
1923
-
1924
- Examples
1925
- --------
1926
- >>> np.isscalar(3.1)
1927
- True
1928
- >>> np.isscalar([3.1])
1929
- False
1930
- >>> np.isscalar(False)
1931
- True
1932
-
1933
- """
1934
- if isinstance(num, generic):
1935
- return True
1936
- else:
1937
- return type(num) in ScalarType
1938
-
1939
- _lkup = {
1940
- '0':'0000',
1941
- '1':'0001',
1942
- '2':'0010',
1943
- '3':'0011',
1944
- '4':'0100',
1945
- '5':'0101',
1946
- '6':'0110',
1947
- '7':'0111',
1948
- '8':'1000',
1949
- '9':'1001',
1950
- 'a':'1010',
1951
- 'b':'1011',
1952
- 'c':'1100',
1953
- 'd':'1101',
1954
- 'e':'1110',
1955
- 'f':'1111',
1956
- 'A':'1010',
1957
- 'B':'1011',
1958
- 'C':'1100',
1959
- 'D':'1101',
1960
- 'E':'1110',
1961
- 'F':'1111',
1962
- 'L':''}
1963
-
1964
- def binary_repr(num, width=None):
1965
- """
1966
- Return the binary representation of the input number as a string.
1967
-
1968
- For negative numbers, if width is not given, a minus sign is added to the
1969
- front. If width is given, the two's complement of the number is
1970
- returned, with respect to that width.
1971
-
1972
- In a two's-complement system negative numbers are represented by the two's
1973
- complement of the absolute value. This is the most common method of
1974
- representing signed integers on computers [1]_. A N-bit two's-complement
1975
- system can represent every integer in the range
1976
- :math:`-2^{N-1}` to :math:`+2^{N-1}-1`.
1977
-
1978
- Parameters
1979
- ----------
1980
- num : int
1981
- Only an integer decimal number can be used.
1982
- width : int, optional
1983
- The length of the returned string if `num` is positive, the length of
1984
- the two's complement if `num` is negative.
1985
-
1986
- Returns
1987
- -------
1988
- bin : str
1989
- Binary representation of `num` or two's complement of `num`.
1990
-
1991
- See Also
1992
- --------
1993
- base_repr: Return a string representation of a number in the given base
1994
- system.
1995
-
1996
- Notes
1997
- -----
1998
- `binary_repr` is equivalent to using `base_repr` with base 2, but about 25x
1999
- faster.
2000
-
2001
- References
2002
- ----------
2003
- .. [1] Wikipedia, "Two's complement",
2004
- http://en.wikipedia.org/wiki/Two's_complement
2005
-
2006
- Examples
2007
- --------
2008
- >>> np.binary_repr(3)
2009
- '11'
2010
- >>> np.binary_repr(-3)
2011
- '-11'
2012
- >>> np.binary_repr(3, width=4)
2013
- '0011'
2014
-
2015
- The two's complement is returned when the input number is negative and
2016
- width is specified:
2017
-
2018
- >>> np.binary_repr(-3, width=4)
2019
- '1101'
2020
-
2021
- """
2022
- # ' <-- unbreak Emacs fontification
2023
- sign = ''
2024
- if num < 0:
2025
- if width is None:
2026
- sign = '-'
2027
- num = -num
2028
- else:
2029
- # replace num with its 2-complement
2030
- num = 2**width + num
2031
- elif num == 0:
2032
- return '0'*(width or 1)
2033
- ostr = hex(num)
2034
- bin = ''.join([_lkup[ch] for ch in ostr[2:]])
2035
- bin = bin.lstrip('0')
2036
- if width is not None:
2037
- bin = bin.zfill(width)
2038
- return sign + bin
2039
-
2040
- def base_repr(number, base=2, padding=0):
2041
- """
2042
- Return a string representation of a number in the given base system.
2043
-
2044
- Parameters
2045
- ----------
2046
- number : int
2047
- The value to convert. Only positive values are handled.
2048
- base : int, optional
2049
- Convert `number` to the `base` number system. The valid range is 2-36,
2050
- the default value is 2.
2051
- padding : int, optional
2052
- Number of zeros padded on the left. Default is 0 (no padding).
2053
-
2054
- Returns
2055
- -------
2056
- out : str
2057
- String representation of `number` in `base` system.
2058
-
2059
- See Also
2060
- --------
2061
- binary_repr : Faster version of `base_repr` for base 2.
2062
-
2063
- Examples
2064
- --------
2065
- >>> np.base_repr(5)
2066
- '101'
2067
- >>> np.base_repr(6, 5)
2068
- '11'
2069
- >>> np.base_repr(7, base=5, padding=3)
2070
- '00012'
2071
-
2072
- >>> np.base_repr(10, base=16)
2073
- 'A'
2074
- >>> np.base_repr(32, base=16)
2075
- '20'
2076
-
2077
- """
2078
- digits = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
2079
- if base > len(digits):
2080
- raise ValueError("Bases greater than 36 not handled in base_repr.")
2081
-
2082
- num = abs(number)
2083
- res = []
2084
- while num:
2085
- res.append(digits[num % base])
2086
- num //= base
2087
- if padding:
2088
- res.append('0' * padding)
2089
- if number < 0:
2090
- res.append('-')
2091
- return ''.join(reversed(res or '0'))
2092
-
2093
-
2094
- def load(file):
2095
- """
2096
- Wrapper around cPickle.load which accepts either a file-like object or
2097
- a filename.
2098
-
2099
- Note that the NumPy binary format is not based on pickle/cPickle anymore.
2100
- For details on the preferred way of loading and saving files, see `load`
2101
- and `save`.
2102
-
2103
- See Also
2104
- --------
2105
- load, save
2106
-
2107
- """
2108
- if isinstance(file, type("")):
2109
- file = open(file, "rb")
2110
- return pickle.load(file)
2111
-
2112
- # These are all essentially abbreviations
2113
- # These might wind up in a special abbreviations module
2114
-
2115
- def _maketup(descr, val):
2116
- dt = dtype(descr)
2117
- # Place val in all scalar tuples:
2118
- fields = dt.fields
2119
- if fields is None:
2120
- return val
2121
- else:
2122
- res = [_maketup(fields[name][0], val) for name in dt.names]
2123
- return tuple(res)
2124
-
2125
- def identity(n, dtype=None):
2126
- """
2127
- Return the identity array.
2128
-
2129
- The identity array is a square array with ones on
2130
- the main diagonal.
2131
-
2132
- Parameters
2133
- ----------
2134
- n : int
2135
- Number of rows (and columns) in `n` x `n` output.
2136
- dtype : data-type, optional
2137
- Data-type of the output. Defaults to ``float``.
2138
-
2139
- Returns
2140
- -------
2141
- out : ndarray
2142
- `n` x `n` array with its main diagonal set to one,
2143
- and all other elements 0.
2144
-
2145
- Examples
2146
- --------
2147
- >>> np.identity(3)
2148
- array([[ 1., 0., 0.],
2149
- [ 0., 1., 0.],
2150
- [ 0., 0., 1.]])
2151
-
2152
- """
2153
- from numpy import eye
2154
- return eye(n, dtype=dtype)
2155
-
2156
- def allclose(a, b, rtol=1.e-5, atol=1.e-8):
2157
- """
2158
- Returns True if two arrays are element-wise equal within a tolerance.
2159
-
2160
- The tolerance values are positive, typically very small numbers. The
2161
- relative difference (`rtol` * abs(`b`)) and the absolute difference
2162
- `atol` are added together to compare against the absolute difference
2163
- between `a` and `b`.
2164
-
2165
- If either array contains one or more NaNs, False is returned.
2166
- Infs are treated as equal if they are in the same place and of the same
2167
- sign in both arrays.
2168
-
2169
- Parameters
2170
- ----------
2171
- a, b : array_like
2172
- Input arrays to compare.
2173
- rtol : float
2174
- The relative tolerance parameter (see Notes).
2175
- atol : float
2176
- The absolute tolerance parameter (see Notes).
2177
-
2178
- Returns
2179
- -------
2180
- allclose : bool
2181
- Returns True if the two arrays are equal within the given
2182
- tolerance; False otherwise.
2183
-
2184
- See Also
2185
- --------
2186
- isclose, all, any
2187
-
2188
- Notes
2189
- -----
2190
- If the following equation is element-wise True, then allclose returns
2191
- True.
2192
-
2193
- absolute(`a` - `b`) <= (`atol` + `rtol` * absolute(`b`))
2194
-
2195
- The above equation is not symmetric in `a` and `b`, so that
2196
- `allclose(a, b)` might be different from `allclose(b, a)` in
2197
- some rare cases.
2198
-
2199
- Examples
2200
- --------
2201
- >>> np.allclose([1e10,1e-7], [1.00001e10,1e-8])
2202
- False
2203
- >>> np.allclose([1e10,1e-8], [1.00001e10,1e-9])
2204
- True
2205
- >>> np.allclose([1e10,1e-8], [1.0001e10,1e-9])
2206
- False
2207
- >>> np.allclose([1.0, np.nan], [1.0, np.nan])
2208
- False
2209
-
2210
- """
2211
- x = array(a, copy=False, ndmin=1)
2212
- y = array(b, copy=False, ndmin=1)
2213
-
2214
- # make sure y is an inexact type to avoid abs(MIN_INT); will cause
2215
- # casting of x later.
2216
- dtype = multiarray.result_type(y, 1.)
2217
- y = array(y, dtype=dtype, copy=False)
2218
-
2219
- xinf = isinf(x)
2220
- yinf = isinf(y)
2221
- if any(xinf) or any(yinf):
2222
- # Check that x and y have inf's only in the same positions
2223
- if not all(xinf == yinf):
2224
- return False
2225
- # Check that sign of inf's in x and y is the same
2226
- if not all(x[xinf] == y[xinf]):
2227
- return False
2228
-
2229
- x = x[~xinf]
2230
- y = y[~xinf]
2231
-
2232
- # ignore invalid fpe's
2233
- with errstate(invalid='ignore'):
2234
- r = all(less_equal(abs(x - y), atol + rtol * abs(y)))
2235
-
2236
- return r
2237
-
2238
- def isclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False):
2239
- """
2240
- Returns a boolean array where two arrays are element-wise equal within a
2241
- tolerance.
2242
-
2243
- The tolerance values are positive, typically very small numbers. The
2244
- relative difference (`rtol` * abs(`b`)) and the absolute difference
2245
- `atol` are added together to compare against the absolute difference
2246
- between `a` and `b`.
2247
-
2248
- Parameters
2249
- ----------
2250
- a, b : array_like
2251
- Input arrays to compare.
2252
- rtol : float
2253
- The relative tolerance parameter (see Notes).
2254
- atol : float
2255
- The absolute tolerance parameter (see Notes).
2256
- equal_nan : bool
2257
- Whether to compare NaN's as equal. If True, NaN's in `a` will be
2258
- considered equal to NaN's in `b` in the output array.
2259
-
2260
- Returns
2261
- -------
2262
- y : array_like
2263
- Returns a boolean array of where `a` and `b` are equal within the
2264
- given tolerance. If both `a` and `b` are scalars, returns a single
2265
- boolean value.
2266
-
2267
- See Also
2268
- --------
2269
- allclose
2270
-
2271
- Notes
2272
- -----
2273
- .. versionadded:: 1.7.0
2274
-
2275
- For finite values, isclose uses the following equation to test whether
2276
- two floating point values are equivalent.
2277
-
2278
- absolute(`a` - `b`) <= (`atol` + `rtol` * absolute(`b`))
2279
-
2280
- The above equation is not symmetric in `a` and `b`, so that
2281
- `isclose(a, b)` might be different from `isclose(b, a)` in
2282
- some rare cases.
2283
-
2284
- Examples
2285
- --------
2286
- >>> np.isclose([1e10,1e-7], [1.00001e10,1e-8])
2287
- array([True, False])
2288
- >>> np.isclose([1e10,1e-8], [1.00001e10,1e-9])
2289
- array([True, True])
2290
- >>> np.isclose([1e10,1e-8], [1.0001e10,1e-9])
2291
- array([False, True])
2292
- >>> np.isclose([1.0, np.nan], [1.0, np.nan])
2293
- array([True, False])
2294
- >>> np.isclose([1.0, np.nan], [1.0, np.nan], equal_nan=True)
2295
- array([True, True])
2296
- """
2297
- def within_tol(x, y, atol, rtol):
2298
- with errstate(invalid='ignore'):
2299
- result = less_equal(abs(x-y), atol + rtol * abs(y))
2300
- if isscalar(a) and isscalar(b):
2301
- result = bool(result)
2302
- return result
2303
-
2304
- x = array(a, copy=False, subok=True, ndmin=1)
2305
- y = array(b, copy=False, subok=True, ndmin=1)
2306
- xfin = isfinite(x)
2307
- yfin = isfinite(y)
2308
- if all(xfin) and all(yfin):
2309
- return within_tol(x, y, atol, rtol)
2310
- else:
2311
- finite = xfin & yfin
2312
- cond = zeros_like(finite, subok=True)
2313
- # Because we're using boolean indexing, x & y must be the same shape.
2314
- # Ideally, we'd just do x, y = broadcast_arrays(x, y). It's in
2315
- # lib.stride_tricks, though, so we can't import it here.
2316
- x = x * ones_like(cond)
2317
- y = y * ones_like(cond)
2318
- # Avoid subtraction with infinite/nan values...
2319
- cond[finite] = within_tol(x[finite], y[finite], atol, rtol)
2320
- # Check for equality of infinite values...
2321
- cond[~finite] = (x[~finite] == y[~finite])
2322
- if equal_nan:
2323
- # Make NaN == NaN
2324
- both_nan = isnan(x) & isnan(y)
2325
- cond[both_nan] = both_nan[both_nan]
2326
- return cond
2327
-
2328
- def array_equal(a1, a2):
2329
- """
2330
- True if two arrays have the same shape and elements, False otherwise.
2331
-
2332
- Parameters
2333
- ----------
2334
- a1, a2 : array_like
2335
- Input arrays.
2336
-
2337
- Returns
2338
- -------
2339
- b : bool
2340
- Returns True if the arrays are equal.
2341
-
2342
- See Also
2343
- --------
2344
- allclose: Returns True if two arrays are element-wise equal within a
2345
- tolerance.
2346
- array_equiv: Returns True if input arrays are shape consistent and all
2347
- elements equal.
2348
-
2349
- Examples
2350
- --------
2351
- >>> np.array_equal([1, 2], [1, 2])
2352
- True
2353
- >>> np.array_equal(np.array([1, 2]), np.array([1, 2]))
2354
- True
2355
- >>> np.array_equal([1, 2], [1, 2, 3])
2356
- False
2357
- >>> np.array_equal([1, 2], [1, 4])
2358
- False
2359
-
2360
- """
2361
- try:
2362
- a1, a2 = asarray(a1), asarray(a2)
2363
- except:
2364
- return False
2365
- if a1.shape != a2.shape:
2366
- return False
2367
- return bool(asarray(a1 == a2).all())
2368
-
2369
- def array_equiv(a1, a2):
2370
- """
2371
- Returns True if input arrays are shape consistent and all elements equal.
2372
-
2373
- Shape consistent means they are either the same shape, or one input array
2374
- can be broadcasted to create the same shape as the other one.
2375
-
2376
- Parameters
2377
- ----------
2378
- a1, a2 : array_like
2379
- Input arrays.
2380
-
2381
- Returns
2382
- -------
2383
- out : bool
2384
- True if equivalent, False otherwise.
2385
-
2386
- Examples
2387
- --------
2388
- >>> np.array_equiv([1, 2], [1, 2])
2389
- True
2390
- >>> np.array_equiv([1, 2], [1, 3])
2391
- False
2392
-
2393
- Showing the shape equivalence:
2394
-
2395
- >>> np.array_equiv([1, 2], [[1, 2], [1, 2]])
2396
- True
2397
- >>> np.array_equiv([1, 2], [[1, 2, 1, 2], [1, 2, 1, 2]])
2398
- False
2399
-
2400
- >>> np.array_equiv([1, 2], [[1, 2], [1, 3]])
2401
- False
2402
-
2403
- """
2404
- try:
2405
- a1, a2 = asarray(a1), asarray(a2)
2406
- except:
2407
- return False
2408
- try:
2409
- multiarray.broadcast(a1, a2)
2410
- except:
2411
- return False
2412
-
2413
- return bool(asarray(a1 == a2).all())
2414
-
2415
-
2416
- _errdict = {"ignore":ERR_IGNORE,
2417
- "warn":ERR_WARN,
2418
- "raise":ERR_RAISE,
2419
- "call":ERR_CALL,
2420
- "print":ERR_PRINT,
2421
- "log":ERR_LOG}
2422
-
2423
- _errdict_rev = {}
2424
- for key in _errdict.keys():
2425
- _errdict_rev[_errdict[key]] = key
2426
- del key
2427
-
2428
- def seterr(all=None, divide=None, over=None, under=None, invalid=None):
2429
- """
2430
- Set how floating-point errors are handled.
2431
-
2432
- Note that operations on integer scalar types (such as `int16`) are
2433
- handled like floating point, and are affected by these settings.
2434
-
2435
- Parameters
2436
- ----------
2437
- all : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
2438
- Set treatment for all types of floating-point errors at once:
2439
-
2440
- - ignore: Take no action when the exception occurs.
2441
- - warn: Print a `RuntimeWarning` (via the Python `warnings` module).
2442
- - raise: Raise a `FloatingPointError`.
2443
- - call: Call a function specified using the `seterrcall` function.
2444
- - print: Print a warning directly to ``stdout``.
2445
- - log: Record error in a Log object specified by `seterrcall`.
2446
-
2447
- The default is not to change the current behavior.
2448
- divide : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
2449
- Treatment for division by zero.
2450
- over : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
2451
- Treatment for floating-point overflow.
2452
- under : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
2453
- Treatment for floating-point underflow.
2454
- invalid : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
2455
- Treatment for invalid floating-point operation.
2456
-
2457
- Returns
2458
- -------
2459
- old_settings : dict
2460
- Dictionary containing the old settings.
2461
-
2462
- See also
2463
- --------
2464
- seterrcall : Set a callback function for the 'call' mode.
2465
- geterr, geterrcall, errstate
2466
-
2467
- Notes
2468
- -----
2469
- The floating-point exceptions are defined in the IEEE 754 standard [1]:
2470
-
2471
- - Division by zero: infinite result obtained from finite numbers.
2472
- - Overflow: result too large to be expressed.
2473
- - Underflow: result so close to zero that some precision
2474
- was lost.
2475
- - Invalid operation: result is not an expressible number, typically
2476
- indicates that a NaN was produced.
2477
-
2478
- .. [1] http://en.wikipedia.org/wiki/IEEE_754
2479
-
2480
- Examples
2481
- --------
2482
- >>> old_settings = np.seterr(all='ignore') #seterr to known value
2483
- >>> np.seterr(over='raise')
2484
- {'over': 'ignore', 'divide': 'ignore', 'invalid': 'ignore',
2485
- 'under': 'ignore'}
2486
- >>> np.seterr(**old_settings) # reset to default
2487
- {'over': 'raise', 'divide': 'ignore', 'invalid': 'ignore', 'under': 'ignore'}
2488
-
2489
- >>> np.int16(32000) * np.int16(3)
2490
- 30464
2491
- >>> old_settings = np.seterr(all='warn', over='raise')
2492
- >>> np.int16(32000) * np.int16(3)
2493
- Traceback (most recent call last):
2494
- File "<stdin>", line 1, in <module>
2495
- FloatingPointError: overflow encountered in short_scalars
2496
-
2497
- >>> old_settings = np.seterr(all='print')
2498
- >>> np.geterr()
2499
- {'over': 'print', 'divide': 'print', 'invalid': 'print', 'under': 'print'}
2500
- >>> np.int16(32000) * np.int16(3)
2501
- Warning: overflow encountered in short_scalars
2502
- 30464
2503
-
2504
- """
2505
-
2506
- pyvals = umath.geterrobj()
2507
- old = geterr()
2508
-
2509
- if divide is None: divide = all or old['divide']
2510
- if over is None: over = all or old['over']
2511
- if under is None: under = all or old['under']
2512
- if invalid is None: invalid = all or old['invalid']
2513
-
2514
- maskvalue = ((_errdict[divide] << SHIFT_DIVIDEBYZERO) +
2515
- (_errdict[over] << SHIFT_OVERFLOW ) +
2516
- (_errdict[under] << SHIFT_UNDERFLOW) +
2517
- (_errdict[invalid] << SHIFT_INVALID))
2518
-
2519
- pyvals[1] = maskvalue
2520
- umath.seterrobj(pyvals)
2521
- return old
2522
-
2523
-
2524
- def geterr():
2525
- """
2526
- Get the current way of handling floating-point errors.
2527
-
2528
- Returns
2529
- -------
2530
- res : dict
2531
- A dictionary with keys "divide", "over", "under", and "invalid",
2532
- whose values are from the strings "ignore", "print", "log", "warn",
2533
- "raise", and "call". The keys represent possible floating-point
2534
- exceptions, and the values define how these exceptions are handled.
2535
-
2536
- See Also
2537
- --------
2538
- geterrcall, seterr, seterrcall
2539
-
2540
- Notes
2541
- -----
2542
- For complete documentation of the types of floating-point exceptions and
2543
- treatment options, see `seterr`.
2544
-
2545
- Examples
2546
- --------
2547
- >>> np.geterr()
2548
- {'over': 'warn', 'divide': 'warn', 'invalid': 'warn',
2549
- 'under': 'ignore'}
2550
- >>> np.arange(3.) / np.arange(3.)
2551
- array([ NaN, 1., 1.])
2552
-
2553
- >>> oldsettings = np.seterr(all='warn', over='raise')
2554
- >>> np.geterr()
2555
- {'over': 'raise', 'divide': 'warn', 'invalid': 'warn', 'under': 'warn'}
2556
- >>> np.arange(3.) / np.arange(3.)
2557
- __main__:1: RuntimeWarning: invalid value encountered in divide
2558
- array([ NaN, 1., 1.])
2559
-
2560
- """
2561
- maskvalue = umath.geterrobj()[1]
2562
- mask = 7
2563
- res = {}
2564
- val = (maskvalue >> SHIFT_DIVIDEBYZERO) & mask
2565
- res['divide'] = _errdict_rev[val]
2566
- val = (maskvalue >> SHIFT_OVERFLOW) & mask
2567
- res['over'] = _errdict_rev[val]
2568
- val = (maskvalue >> SHIFT_UNDERFLOW) & mask
2569
- res['under'] = _errdict_rev[val]
2570
- val = (maskvalue >> SHIFT_INVALID) & mask
2571
- res['invalid'] = _errdict_rev[val]
2572
- return res
2573
-
2574
- def setbufsize(size):
2575
- """
2576
- Set the size of the buffer used in ufuncs.
2577
-
2578
- Parameters
2579
- ----------
2580
- size : int
2581
- Size of buffer.
2582
-
2583
- """
2584
- if size > 10e6:
2585
- raise ValueError("Buffer size, %s, is too big." % size)
2586
- if size < 5:
2587
- raise ValueError("Buffer size, %s, is too small." %size)
2588
- if size % 16 != 0:
2589
- raise ValueError("Buffer size, %s, is not a multiple of 16." %size)
2590
-
2591
- pyvals = umath.geterrobj()
2592
- old = getbufsize()
2593
- pyvals[0] = size
2594
- umath.seterrobj(pyvals)
2595
- return old
2596
-
2597
- def getbufsize():
2598
- """
2599
- Return the size of the buffer used in ufuncs.
2600
-
2601
- Returns
2602
- -------
2603
- getbufsize : int
2604
- Size of ufunc buffer in bytes.
2605
-
2606
- """
2607
- return umath.geterrobj()[0]
2608
-
2609
- def seterrcall(func):
2610
- """
2611
- Set the floating-point error callback function or log object.
2612
-
2613
- There are two ways to capture floating-point error messages. The first
2614
- is to set the error-handler to 'call', using `seterr`. Then, set
2615
- the function to call using this function.
2616
-
2617
- The second is to set the error-handler to 'log', using `seterr`.
2618
- Floating-point errors then trigger a call to the 'write' method of
2619
- the provided object.
2620
-
2621
- Parameters
2622
- ----------
2623
- func : callable f(err, flag) or object with write method
2624
- Function to call upon floating-point errors ('call'-mode) or
2625
- object whose 'write' method is used to log such message ('log'-mode).
2626
-
2627
- The call function takes two arguments. The first is the
2628
- type of error (one of "divide", "over", "under", or "invalid"),
2629
- and the second is the status flag. The flag is a byte, whose
2630
- least-significant bits indicate the status::
2631
-
2632
- [0 0 0 0 invalid over under invalid]
2633
-
2634
- In other words, ``flags = divide + 2*over + 4*under + 8*invalid``.
2635
-
2636
- If an object is provided, its write method should take one argument,
2637
- a string.
2638
-
2639
- Returns
2640
- -------
2641
- h : callable, log instance or None
2642
- The old error handler.
2643
-
2644
- See Also
2645
- --------
2646
- seterr, geterr, geterrcall
2647
-
2648
- Examples
2649
- --------
2650
- Callback upon error:
2651
-
2652
- >>> def err_handler(type, flag):
2653
- ... print "Floating point error (%s), with flag %s" % (type, flag)
2654
- ...
2655
-
2656
- >>> saved_handler = np.seterrcall(err_handler)
2657
- >>> save_err = np.seterr(all='call')
2658
-
2659
- >>> np.array([1, 2, 3]) / 0.0
2660
- Floating point error (divide by zero), with flag 1
2661
- array([ Inf, Inf, Inf])
2662
-
2663
- >>> np.seterrcall(saved_handler)
2664
- <function err_handler at 0x...>
2665
- >>> np.seterr(**save_err)
2666
- {'over': 'call', 'divide': 'call', 'invalid': 'call', 'under': 'call'}
2667
-
2668
- Log error message:
2669
-
2670
- >>> class Log(object):
2671
- ... def write(self, msg):
2672
- ... print "LOG: %s" % msg
2673
- ...
2674
-
2675
- >>> log = Log()
2676
- >>> saved_handler = np.seterrcall(log)
2677
- >>> save_err = np.seterr(all='log')
2678
-
2679
- >>> np.array([1, 2, 3]) / 0.0
2680
- LOG: Warning: divide by zero encountered in divide
2681
- <BLANKLINE>
2682
- array([ Inf, Inf, Inf])
2683
-
2684
- >>> np.seterrcall(saved_handler)
2685
- <__main__.Log object at 0x...>
2686
- >>> np.seterr(**save_err)
2687
- {'over': 'log', 'divide': 'log', 'invalid': 'log', 'under': 'log'}
2688
-
2689
- """
2690
- if func is not None and not isinstance(func, collections.Callable):
2691
- if not hasattr(func, 'write') or not isinstance(func.write, collections.Callable):
2692
- raise ValueError("Only callable can be used as callback")
2693
- pyvals = umath.geterrobj()
2694
- old = geterrcall()
2695
- pyvals[2] = func
2696
- umath.seterrobj(pyvals)
2697
- return old
2698
-
2699
- def geterrcall():
2700
- """
2701
- Return the current callback function used on floating-point errors.
2702
-
2703
- When the error handling for a floating-point error (one of "divide",
2704
- "over", "under", or "invalid") is set to 'call' or 'log', the function
2705
- that is called or the log instance that is written to is returned by
2706
- `geterrcall`. This function or log instance has been set with
2707
- `seterrcall`.
2708
-
2709
- Returns
2710
- -------
2711
- errobj : callable, log instance or None
2712
- The current error handler. If no handler was set through `seterrcall`,
2713
- ``None`` is returned.
2714
-
2715
- See Also
2716
- --------
2717
- seterrcall, seterr, geterr
2718
-
2719
- Notes
2720
- -----
2721
- For complete documentation of the types of floating-point exceptions and
2722
- treatment options, see `seterr`.
2723
-
2724
- Examples
2725
- --------
2726
- >>> np.geterrcall() # we did not yet set a handler, returns None
2727
-
2728
- >>> oldsettings = np.seterr(all='call')
2729
- >>> def err_handler(type, flag):
2730
- ... print "Floating point error (%s), with flag %s" % (type, flag)
2731
- >>> oldhandler = np.seterrcall(err_handler)
2732
- >>> np.array([1, 2, 3]) / 0.0
2733
- Floating point error (divide by zero), with flag 1
2734
- array([ Inf, Inf, Inf])
2735
-
2736
- >>> cur_handler = np.geterrcall()
2737
- >>> cur_handler is err_handler
2738
- True
2739
-
2740
- """
2741
- return umath.geterrobj()[2]
2742
-
2743
- class _unspecified(object):
2744
- pass
2745
- _Unspecified = _unspecified()
2746
-
2747
- class errstate(object):
2748
- """
2749
- errstate(**kwargs)
2750
-
2751
- Context manager for floating-point error handling.
2752
-
2753
- Using an instance of `errstate` as a context manager allows statements in
2754
- that context to execute with a known error handling behavior. Upon entering
2755
- the context the error handling is set with `seterr` and `seterrcall`, and
2756
- upon exiting it is reset to what it was before.
2757
-
2758
- Parameters
2759
- ----------
2760
- kwargs : {divide, over, under, invalid}
2761
- Keyword arguments. The valid keywords are the possible floating-point
2762
- exceptions. Each keyword should have a string value that defines the
2763
- treatment for the particular error. Possible values are
2764
- {'ignore', 'warn', 'raise', 'call', 'print', 'log'}.
2765
-
2766
- See Also
2767
- --------
2768
- seterr, geterr, seterrcall, geterrcall
2769
-
2770
- Notes
2771
- -----
2772
- The ``with`` statement was introduced in Python 2.5, and can only be used
2773
- there by importing it: ``from __future__ import with_statement``. In
2774
- earlier Python versions the ``with`` statement is not available.
2775
-
2776
- For complete documentation of the types of floating-point exceptions and
2777
- treatment options, see `seterr`.
2778
-
2779
- Examples
2780
- --------
2781
- >>> from __future__ import with_statement # use 'with' in Python 2.5
2782
- >>> olderr = np.seterr(all='ignore') # Set error handling to known state.
2783
-
2784
- >>> np.arange(3) / 0.
2785
- array([ NaN, Inf, Inf])
2786
- >>> with np.errstate(divide='warn'):
2787
- ... np.arange(3) / 0.
2788
- ...
2789
- __main__:2: RuntimeWarning: divide by zero encountered in divide
2790
- array([ NaN, Inf, Inf])
2791
-
2792
- >>> np.sqrt(-1)
2793
- nan
2794
- >>> with np.errstate(invalid='raise'):
2795
- ... np.sqrt(-1)
2796
- Traceback (most recent call last):
2797
- File "<stdin>", line 2, in <module>
2798
- FloatingPointError: invalid value encountered in sqrt
2799
-
2800
- Outside the context the error handling behavior has not changed:
2801
-
2802
- >>> np.geterr()
2803
- {'over': 'warn', 'divide': 'warn', 'invalid': 'warn',
2804
- 'under': 'ignore'}
2805
-
2806
- """
2807
- # Note that we don't want to run the above doctests because they will fail
2808
- # without a from __future__ import with_statement
2809
- def __init__(self, **kwargs):
2810
- self.call = kwargs.pop('call', _Unspecified)
2811
- self.kwargs = kwargs
2812
-
2813
- def __enter__(self):
2814
- self.oldstate = seterr(**self.kwargs)
2815
- if self.call is not _Unspecified:
2816
- self.oldcall = seterrcall(self.call)
2817
-
2818
- def __exit__(self, *exc_info):
2819
- seterr(**self.oldstate)
2820
- if self.call is not _Unspecified:
2821
- seterrcall(self.oldcall)
2822
-
2823
-
2824
- def _setdef():
2825
- defval = [UFUNC_BUFSIZE_DEFAULT, ERR_DEFAULT, None]
2826
- umath.seterrobj(defval)
2827
-
2828
- # set the default values
2829
- _setdef()
2830
-
2831
- Inf = inf = infty = Infinity = PINF
2832
- nan = NaN = NAN
2833
- False_ = bool_(False)
2834
- True_ = bool_(True)
2835
-
2836
- from .umath import *
2837
- from .numerictypes import *
2838
- from . import fromnumeric
2839
- from .fromnumeric import *
2840
- extend_all(fromnumeric)
2841
- extend_all(umath)
2842
- extend_all(numerictypes)