numpy 1.9.3__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 (1590) 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/source/conf.py +331 -0
  12. numpy-1.10.0.post2/doc/source/dev/development_environment.rst +211 -0
  13. numpy-1.10.0.post2/doc/source/dev/gitwash/development_workflow.rst +534 -0
  14. numpy-1.10.0.post2/doc/source/dev/gitwash/git_links.inc +95 -0
  15. numpy-1.10.0.post2/doc/source/dev/gitwash/index.rst +14 -0
  16. numpy-1.10.0.post2/doc/source/dev/index.rst +11 -0
  17. numpy-1.10.0.post2/doc/source/reference/arrays.classes.rst +490 -0
  18. numpy-1.10.0.post2/doc/source/reference/arrays.dtypes.rst +536 -0
  19. numpy-1.10.0.post2/doc/source/reference/arrays.indexing.rst +549 -0
  20. numpy-1.10.0.post2/doc/source/reference/arrays.interface.rst +337 -0
  21. numpy-1.10.0.post2/doc/source/reference/arrays.ndarray.rst +622 -0
  22. numpy-1.10.0.post2/doc/source/reference/arrays.scalars.rst +291 -0
  23. numpy-1.10.0.post2/doc/source/reference/c-api.array.rst +3393 -0
  24. numpy-1.10.0.post2/doc/source/reference/c-api.config.rst +103 -0
  25. numpy-1.10.0.post2/doc/source/reference/c-api.coremath.rst +420 -0
  26. numpy-1.10.0.post2/doc/source/reference/c-api.dtype.rst +376 -0
  27. numpy-1.10.0.post2/doc/source/reference/c-api.generalized-ufuncs.rst +191 -0
  28. numpy-1.10.0.post2/doc/source/reference/c-api.iterator.rst +1300 -0
  29. numpy-1.10.0.post2/doc/source/reference/c-api.types-and-structures.rst +1240 -0
  30. numpy-1.10.0.post2/doc/source/reference/c-api.ufunc.rst +413 -0
  31. numpy-1.10.0.post2/doc/source/reference/index.rst +43 -0
  32. numpy-1.10.0.post2/doc/source/reference/internals.code-explanations.rst +615 -0
  33. numpy-1.10.0.post2/doc/source/reference/routines.array-manipulation.rst +115 -0
  34. numpy-1.10.0.post2/doc/source/reference/routines.io.rst +78 -0
  35. numpy-1.10.0.post2/doc/source/reference/routines.linalg.rst +91 -0
  36. numpy-1.10.0.post2/doc/source/reference/routines.ma.rst +407 -0
  37. numpy-1.10.0.post2/doc/source/reference/routines.sort.rst +41 -0
  38. numpy-1.10.0.post2/doc/source/reference/routines.statistics.rst +57 -0
  39. numpy-1.10.0.post2/doc/source/reference/swig.interface-file.rst +1066 -0
  40. numpy-1.10.0.post2/doc/source/reference/swig.testing.rst +167 -0
  41. numpy-1.10.0.post2/doc/source/reference/ufuncs.rst +666 -0
  42. numpy-1.10.0.post2/doc/source/release.rst +20 -0
  43. numpy-1.10.0.post2/doc/source/user/basics.io.genfromtxt.rst +531 -0
  44. numpy-1.10.0.post2/doc/source/user/basics.rec.rst +7 -0
  45. numpy-1.10.0.post2/doc/source/user/c-info.beyond-basics.rst +560 -0
  46. numpy-1.10.0.post2/doc/source/user/c-info.how-to-extend.rst +642 -0
  47. numpy-1.10.0.post2/doc/source/user/c-info.python-as-glue.rst +1177 -0
  48. numpy-1.10.0.post2/doc/source/user/c-info.ufunc-tutorial.rst +1211 -0
  49. numpy-1.10.0.post2/doc/source/user/install.rst +194 -0
  50. numpy-1.10.0.post2/numpy/__init__.py +227 -0
  51. numpy-1.10.0.post2/numpy/_build_utils/README +8 -0
  52. numpy-1.10.0.post2/numpy/_build_utils/apple_accelerate.py +21 -0
  53. numpy-1.10.0.post2/numpy/_build_utils/common.py +138 -0
  54. numpy-1.10.0.post2/numpy/_build_utils/src/apple_sgemv_fix.c +227 -0
  55. numpy-1.10.0.post2/numpy/_build_utils/waf.py +531 -0
  56. numpy-1.10.0.post2/numpy/_import_tools.py +353 -0
  57. numpy-1.10.0.post2/numpy/add_newdocs.py +7611 -0
  58. numpy-1.10.0.post2/numpy/compat/_inspect.py +194 -0
  59. numpy-1.10.0.post2/numpy/compat/py3k.py +88 -0
  60. numpy-1.10.0.post2/numpy/compat/setup.py +12 -0
  61. numpy-1.10.0.post2/numpy/core/__init__.py +89 -0
  62. numpy-1.10.0.post2/numpy/core/_internal.py +761 -0
  63. numpy-1.10.0.post2/numpy/core/_methods.py +133 -0
  64. numpy-1.10.0.post2/numpy/core/arrayprint.py +760 -0
  65. numpy-1.10.0.post2/numpy/core/code_generators/cversions.txt +34 -0
  66. numpy-1.10.0.post2/numpy/core/code_generators/generate_ufunc_api.py +219 -0
  67. numpy-1.10.0.post2/numpy/core/code_generators/generate_umath.py +1017 -0
  68. numpy-1.10.0.post2/numpy/core/code_generators/numpy_api.py +415 -0
  69. numpy-1.10.0.post2/numpy/core/code_generators/ufunc_docstrings.py +3442 -0
  70. numpy-1.10.0.post2/numpy/core/defchararray.py +2689 -0
  71. numpy-1.10.0.post2/numpy/core/fromnumeric.py +3089 -0
  72. numpy-1.10.0.post2/numpy/core/function_base.py +203 -0
  73. numpy-1.10.0.post2/numpy/core/getlimits.py +308 -0
  74. numpy-1.10.0.post2/numpy/core/include/numpy/ndarrayobject.h +246 -0
  75. numpy-1.10.0.post2/numpy/core/include/numpy/ndarraytypes.h +1797 -0
  76. numpy-1.10.0.post2/numpy/core/include/numpy/npy_3kcompat.h +448 -0
  77. numpy-1.10.0.post2/numpy/core/include/numpy/npy_common.h +1051 -0
  78. numpy-1.10.0.post2/numpy/core/include/numpy/npy_cpu.h +92 -0
  79. numpy-1.10.0.post2/numpy/core/include/numpy/npy_endian.h +61 -0
  80. numpy-1.10.0.post2/numpy/core/include/numpy/npy_math.h +525 -0
  81. numpy-1.10.0.post2/numpy/core/include/numpy/numpyconfig.h +36 -0
  82. numpy-1.10.0.post2/numpy/core/machar.py +342 -0
  83. numpy-1.10.0.post2/numpy/core/memmap.py +311 -0
  84. numpy-1.10.0.post2/numpy/core/numeric.py +2893 -0
  85. numpy-1.10.0.post2/numpy/core/numerictypes.py +1036 -0
  86. numpy-1.10.0.post2/numpy/core/records.py +846 -0
  87. numpy-1.10.0.post2/numpy/core/setup.py +983 -0
  88. numpy-1.10.0.post2/numpy/core/setup_common.py +352 -0
  89. numpy-1.10.0.post2/numpy/core/shape_base.py +350 -0
  90. numpy-1.10.0.post2/numpy/core/src/multiarray/alloc.c +244 -0
  91. numpy-1.10.0.post2/numpy/core/src/multiarray/arrayobject.c +1858 -0
  92. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.c.src +4738 -0
  93. numpy-1.10.0.post2/numpy/core/src/multiarray/arraytypes.h +37 -0
  94. numpy-1.10.0.post2/numpy/core/src/multiarray/buffer.c +981 -0
  95. numpy-1.10.0.post2/numpy/core/src/multiarray/calculation.c +1224 -0
  96. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.c +812 -0
  97. numpy-1.10.0.post2/numpy/core/src/multiarray/cblasfuncs.h +10 -0
  98. numpy-1.10.0.post2/numpy/core/src/multiarray/common.c +911 -0
  99. numpy-1.10.0.post2/numpy/core/src/multiarray/common.h +250 -0
  100. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.c +1664 -0
  101. numpy-1.10.0.post2/numpy/core/src/multiarray/compiled_base.h +24 -0
  102. numpy-1.10.0.post2/numpy/core/src/multiarray/conversion_utils.c +1217 -0
  103. numpy-1.10.0.post2/numpy/core/src/multiarray/convert.c +590 -0
  104. numpy-1.10.0.post2/numpy/core/src/multiarray/convert_datatype.c +2155 -0
  105. numpy-1.10.0.post2/numpy/core/src/multiarray/ctors.c +3838 -0
  106. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime.c +3821 -0
  107. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busday.c +1322 -0
  108. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_busdaycal.c +552 -0
  109. numpy-1.10.0.post2/numpy/core/src/multiarray/datetime_strings.c +1772 -0
  110. numpy-1.10.0.post2/numpy/core/src/multiarray/descriptor.c +3719 -0
  111. numpy-1.10.0.post2/numpy/core/src/multiarray/dtype_transfer.c +4239 -0
  112. numpy-1.10.0.post2/numpy/core/src/multiarray/einsum.c.src +3005 -0
  113. numpy-1.10.0.post2/numpy/core/src/multiarray/getset.c +986 -0
  114. numpy-1.10.0.post2/numpy/core/src/multiarray/hashdescr.c +318 -0
  115. numpy-1.10.0.post2/numpy/core/src/multiarray/item_selection.c +2413 -0
  116. numpy-1.10.0.post2/numpy/core/src/multiarray/iterators.c +2192 -0
  117. numpy-1.10.0.post2/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +1769 -0
  118. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.c +3380 -0
  119. numpy-1.10.0.post2/numpy/core/src/multiarray/mapping.h +77 -0
  120. numpy-1.10.0.post2/numpy/core/src/multiarray/methods.c +2514 -0
  121. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarray_tests.c.src +1035 -0
  122. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.c +4628 -0
  123. numpy-1.10.0.post2/numpy/core/src/multiarray/multiarraymodule.h +15 -0
  124. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_api.c +2809 -0
  125. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_constr.c +3160 -0
  126. numpy-1.10.0.post2/numpy/core/src/multiarray/nditer_pywrap.c +2499 -0
  127. numpy-1.10.0.post2/numpy/core/src/multiarray/number.c +1106 -0
  128. numpy-1.10.0.post2/numpy/core/src/multiarray/number.h +77 -0
  129. numpy-1.10.0.post2/numpy/core/src/multiarray/numpymemoryview.c +308 -0
  130. numpy-1.10.0.post2/numpy/core/src/multiarray/numpyos.c +683 -0
  131. numpy-1.10.0.post2/numpy/core/src/multiarray/scalarapi.c +870 -0
  132. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.c.src +4343 -0
  133. numpy-1.10.0.post2/numpy/core/src/multiarray/scalartypes.h +55 -0
  134. numpy-1.10.0.post2/numpy/core/src/multiarray/shape.c +1131 -0
  135. numpy-1.10.0.post2/numpy/core/src/multiarray/ucsnarrow.c +174 -0
  136. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.c +180 -0
  137. numpy-1.10.0.post2/numpy/core/src/multiarray/vdot.h +18 -0
  138. numpy-1.10.0.post2/numpy/core/src/npymath/ieee754.c.src +808 -0
  139. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math.c.src +597 -0
  140. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_complex.c.src +1788 -0
  141. numpy-1.10.0.post2/numpy/core/src/npymath/npy_math_private.h +544 -0
  142. numpy-1.10.0.post2/numpy/core/src/npysort/heapsort.c.src +402 -0
  143. numpy-1.10.0.post2/numpy/core/src/npysort/mergesort.c.src +488 -0
  144. numpy-1.10.0.post2/numpy/core/src/npysort/npysort_common.h +360 -0
  145. numpy-1.10.0.post2/numpy/core/src/npysort/quicksort.c.src +523 -0
  146. numpy-1.10.0.post2/numpy/core/src/npysort/selection.c.src +426 -0
  147. numpy-1.10.0.post2/numpy/core/src/private/npy_cblas.h +584 -0
  148. numpy-1.10.0.post2/numpy/core/src/private/npy_config.h +101 -0
  149. numpy-1.10.0.post2/numpy/core/src/private/npy_import.h +32 -0
  150. numpy-1.10.0.post2/numpy/core/src/private/npy_partition.h.src +122 -0
  151. numpy-1.10.0.post2/numpy/core/src/private/npy_sort.h +196 -0
  152. numpy-1.10.0.post2/numpy/core/src/private/templ_common.h.src +43 -0
  153. numpy-1.10.0.post2/numpy/core/src/private/ufunc_override.h +397 -0
  154. numpy-1.10.0.post2/numpy/core/src/umath/funcs.inc.src +356 -0
  155. numpy-1.10.0.post2/numpy/core/src/umath/loops.c.src +2675 -0
  156. numpy-1.10.0.post2/numpy/core/src/umath/loops.h.src +497 -0
  157. numpy-1.10.0.post2/numpy/core/src/umath/operand_flag_tests.c.src +105 -0
  158. numpy-1.10.0.post2/numpy/core/src/umath/scalarmath.c.src +1738 -0
  159. numpy-1.10.0.post2/numpy/core/src/umath/simd.inc.src +903 -0
  160. numpy-1.10.0.post2/numpy/core/src/umath/test_rational.c.src +1404 -0
  161. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_object.c +5703 -0
  162. numpy-1.10.0.post2/numpy/core/src/umath/ufunc_type_resolution.c +2159 -0
  163. numpy-1.10.0.post2/numpy/core/src/umath/umath_tests.c.src +392 -0
  164. numpy-1.10.0.post2/numpy/core/src/umath/umathmodule.c +443 -0
  165. numpy-1.10.0.post2/numpy/core/tests/test_abc.py +47 -0
  166. numpy-1.10.0.post2/numpy/core/tests/test_api.py +515 -0
  167. numpy-1.10.0.post2/numpy/core/tests/test_arrayprint.py +171 -0
  168. numpy-1.10.0.post2/numpy/core/tests/test_datetime.py +1820 -0
  169. numpy-1.10.0.post2/numpy/core/tests/test_defchararray.py +703 -0
  170. numpy-1.10.0.post2/numpy/core/tests/test_deprecations.py +619 -0
  171. numpy-1.10.0.post2/numpy/core/tests/test_dtype.py +578 -0
  172. numpy-1.10.0.post2/numpy/core/tests/test_einsum.py +627 -0
  173. numpy-1.10.0.post2/numpy/core/tests/test_errstate.py +52 -0
  174. numpy-1.10.0.post2/numpy/core/tests/test_function_base.py +142 -0
  175. numpy-1.10.0.post2/numpy/core/tests/test_getlimits.py +77 -0
  176. numpy-1.10.0.post2/numpy/core/tests/test_half.py +436 -0
  177. numpy-1.10.0.post2/numpy/core/tests/test_indexerrors.py +126 -0
  178. numpy-1.10.0.post2/numpy/core/tests/test_indexing.py +1047 -0
  179. numpy-1.10.0.post2/numpy/core/tests/test_item_selection.py +73 -0
  180. numpy-1.10.0.post2/numpy/core/tests/test_machar.py +29 -0
  181. numpy-1.10.0.post2/numpy/core/tests/test_memmap.py +130 -0
  182. numpy-1.10.0.post2/numpy/core/tests/test_multiarray.py +5924 -0
  183. numpy-1.10.0.post2/numpy/core/tests/test_multiarray_assignment.py +84 -0
  184. numpy-1.10.0.post2/numpy/core/tests/test_nditer.py +2638 -0
  185. numpy-1.10.0.post2/numpy/core/tests/test_numeric.py +2204 -0
  186. numpy-1.10.0.post2/numpy/core/tests/test_numerictypes.py +382 -0
  187. numpy-1.10.0.post2/numpy/core/tests/test_print.py +248 -0
  188. numpy-1.10.0.post2/numpy/core/tests/test_records.py +299 -0
  189. numpy-1.10.0.post2/numpy/core/tests/test_regression.py +2177 -0
  190. numpy-1.10.0.post2/numpy/core/tests/test_scalarinherit.py +41 -0
  191. numpy-1.10.0.post2/numpy/core/tests/test_scalarmath.py +316 -0
  192. numpy-1.10.0.post2/numpy/core/tests/test_shape_base.py +319 -0
  193. numpy-1.10.0.post2/numpy/core/tests/test_ufunc.py +1227 -0
  194. numpy-1.10.0.post2/numpy/core/tests/test_umath.py +1933 -0
  195. numpy-1.10.0.post2/numpy/core/tests/test_umath_complex.py +538 -0
  196. numpy-1.10.0.post2/numpy/core/tests/test_unicode.py +360 -0
  197. numpy-1.10.0.post2/numpy/distutils/__init__.py +23 -0
  198. numpy-1.10.0.post2/numpy/distutils/ccompiler.py +690 -0
  199. numpy-1.10.0.post2/numpy/distutils/command/autodist.py +94 -0
  200. numpy-1.10.0.post2/numpy/distutils/command/build.py +47 -0
  201. numpy-1.10.0.post2/numpy/distutils/command/build_clib.py +295 -0
  202. numpy-1.10.0.post2/numpy/distutils/command/build_ext.py +522 -0
  203. numpy-1.10.0.post2/numpy/distutils/command/config.py +437 -0
  204. numpy-1.10.0.post2/numpy/distutils/exec_command.py +651 -0
  205. numpy-1.10.0.post2/numpy/distutils/fcompiler/compaq.py +128 -0
  206. numpy-1.10.0.post2/numpy/distutils/fcompiler/gnu.py +403 -0
  207. numpy-1.10.0.post2/numpy/distutils/fcompiler/intel.py +217 -0
  208. numpy-1.10.0.post2/numpy/distutils/fcompiler/pg.py +63 -0
  209. numpy-1.10.0.post2/numpy/distutils/fcompiler/sun.py +55 -0
  210. numpy-1.10.0.post2/numpy/distutils/intelccompiler.py +95 -0
  211. numpy-1.10.0.post2/numpy/distutils/lib2def.py +116 -0
  212. numpy-1.10.0.post2/numpy/distutils/mingw32ccompiler.py +599 -0
  213. numpy-1.10.0.post2/numpy/distutils/misc_util.py +2306 -0
  214. numpy-1.10.0.post2/numpy/distutils/msvc9compiler.py +23 -0
  215. numpy-1.10.0.post2/numpy/distutils/msvccompiler.py +17 -0
  216. numpy-1.10.0.post2/numpy/distutils/npy_pkg_config.py +451 -0
  217. numpy-1.10.0.post2/numpy/distutils/system_info.py +2397 -0
  218. numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +12 -0
  219. numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +11 -0
  220. numpy-1.10.0.post2/numpy/distutils/tests/gen_ext/tests/test_fib3.py +11 -0
  221. numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +13 -0
  222. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/__init__.py +1 -0
  223. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example.py +17 -0
  224. numpy-1.10.0.post2/numpy/distutils/tests/swig_ext/tests/test_example2.py +15 -0
  225. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_gnu.py +60 -0
  226. numpy-1.10.0.post2/numpy/distutils/tests/test_fcompiler_intel.py +36 -0
  227. numpy-1.10.0.post2/numpy/distutils/tests/test_misc_util.py +79 -0
  228. numpy-1.10.0.post2/numpy/distutils/tests/test_npy_pkg_config.py +102 -0
  229. numpy-1.10.0.post2/numpy/distutils/tests/test_system_info.py +209 -0
  230. numpy-1.10.0.post2/numpy/distutils/unixccompiler.py +125 -0
  231. numpy-1.10.0.post2/numpy/doc/byteswapping.py +156 -0
  232. numpy-1.10.0.post2/numpy/doc/creation.py +144 -0
  233. numpy-1.10.0.post2/numpy/doc/glossary.py +423 -0
  234. numpy-1.10.0.post2/numpy/doc/indexing.py +439 -0
  235. numpy-1.10.0.post2/numpy/doc/structured_arrays.py +290 -0
  236. numpy-1.10.0.post2/numpy/f2py/__init__.py +49 -0
  237. numpy-1.10.0.post2/numpy/f2py/__main__.py +25 -0
  238. numpy-1.10.0.post2/numpy/f2py/auxfuncs.py +858 -0
  239. numpy-1.10.0.post2/numpy/f2py/capi_maps.py +851 -0
  240. numpy-1.10.0.post2/numpy/f2py/cb_rules.py +554 -0
  241. numpy-1.10.0.post2/numpy/f2py/cfuncs.py +1261 -0
  242. numpy-1.10.0.post2/numpy/f2py/common_rules.py +150 -0
  243. numpy-1.10.0.post2/numpy/f2py/crackfortran.py +3314 -0
  244. numpy-1.10.0.post2/numpy/f2py/diagnose.py +156 -0
  245. numpy-1.10.0.post2/numpy/f2py/f2py2e.py +656 -0
  246. numpy-1.10.0.post2/numpy/f2py/f2py_testing.py +48 -0
  247. numpy-1.10.0.post2/numpy/f2py/f90mod_rules.py +272 -0
  248. numpy-1.10.0.post2/numpy/f2py/func2subr.py +299 -0
  249. numpy-1.10.0.post2/numpy/f2py/rules.py +1475 -0
  250. numpy-1.10.0.post2/numpy/f2py/setup.py +117 -0
  251. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.c +1037 -0
  252. numpy-1.10.0.post2/numpy/f2py/src/fortranobject.h +162 -0
  253. numpy-1.10.0.post2/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +223 -0
  254. numpy-1.10.0.post2/numpy/f2py/tests/test_array_from_pyobj.py +593 -0
  255. numpy-1.10.0.post2/numpy/f2py/tests/test_assumed_shape.py +35 -0
  256. numpy-1.10.0.post2/numpy/f2py/tests/test_callback.py +136 -0
  257. numpy-1.10.0.post2/numpy/f2py/tests/test_kind.py +36 -0
  258. numpy-1.10.0.post2/numpy/f2py/tests/test_mixed.py +40 -0
  259. numpy-1.10.0.post2/numpy/f2py/tests/test_regression.py +34 -0
  260. numpy-1.10.0.post2/numpy/f2py/tests/test_return_character.py +148 -0
  261. numpy-1.10.0.post2/numpy/f2py/tests/test_return_complex.py +170 -0
  262. numpy-1.10.0.post2/numpy/f2py/tests/test_return_integer.py +180 -0
  263. numpy-1.10.0.post2/numpy/f2py/tests/test_return_logical.py +189 -0
  264. numpy-1.10.0.post2/numpy/f2py/tests/test_return_real.py +206 -0
  265. numpy-1.10.0.post2/numpy/f2py/tests/test_size.py +44 -0
  266. numpy-1.10.0.post2/numpy/f2py/tests/util.py +367 -0
  267. numpy-1.10.0.post2/numpy/f2py/use_rules.py +115 -0
  268. numpy-1.10.0.post2/numpy/fft/fftpack.c +1501 -0
  269. numpy-1.10.0.post2/numpy/fft/fftpack.h +28 -0
  270. numpy-1.10.0.post2/numpy/fft/fftpack.py +1241 -0
  271. numpy-1.10.0.post2/numpy/fft/fftpack_litemodule.c +363 -0
  272. numpy-1.10.0.post2/numpy/fft/info.py +187 -0
  273. numpy-1.10.0.post2/numpy/fft/setup.py +19 -0
  274. numpy-1.10.0.post2/numpy/fft/tests/test_fftpack.py +166 -0
  275. numpy-1.10.0.post2/numpy/fft/tests/test_helper.py +78 -0
  276. numpy-1.10.0.post2/numpy/lib/_iotools.py +917 -0
  277. numpy-1.10.0.post2/numpy/lib/arraypad.py +1497 -0
  278. numpy-1.10.0.post2/numpy/lib/arraysetops.py +480 -0
  279. numpy-1.10.0.post2/numpy/lib/arrayterator.py +226 -0
  280. numpy-1.10.0.post2/numpy/lib/financial.py +737 -0
  281. numpy-1.10.0.post2/numpy/lib/format.py +814 -0
  282. numpy-1.10.0.post2/numpy/lib/function_base.py +4150 -0
  283. numpy-1.10.0.post2/numpy/lib/index_tricks.py +874 -0
  284. numpy-1.10.0.post2/numpy/lib/info.py +152 -0
  285. numpy-1.10.0.post2/numpy/lib/nanfunctions.py +1237 -0
  286. numpy-1.10.0.post2/numpy/lib/npyio.py +1992 -0
  287. numpy-1.10.0.post2/numpy/lib/polynomial.py +1277 -0
  288. numpy-1.10.0.post2/numpy/lib/recfunctions.py +1003 -0
  289. numpy-1.10.0.post2/numpy/lib/setup.py +12 -0
  290. numpy-1.10.0.post2/numpy/lib/shape_base.py +872 -0
  291. numpy-1.10.0.post2/numpy/lib/stride_tricks.py +200 -0
  292. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npy +0 -0
  293. numpy-1.10.0.post2/numpy/lib/tests/data/py2-objarr.npz +0 -0
  294. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npy +0 -0
  295. numpy-1.10.0.post2/numpy/lib/tests/data/py3-objarr.npz +0 -0
  296. numpy-1.10.0.post2/numpy/lib/tests/test__iotools.py +348 -0
  297. numpy-1.10.0.post2/numpy/lib/tests/test__version.py +70 -0
  298. numpy-1.10.0.post2/numpy/lib/tests/test_arraypad.py +1047 -0
  299. numpy-1.10.0.post2/numpy/lib/tests/test_arraysetops.py +309 -0
  300. numpy-1.10.0.post2/numpy/lib/tests/test_financial.py +163 -0
  301. numpy-1.10.0.post2/numpy/lib/tests/test_format.py +841 -0
  302. numpy-1.10.0.post2/numpy/lib/tests/test_function_base.py +2555 -0
  303. numpy-1.10.0.post2/numpy/lib/tests/test_index_tricks.py +326 -0
  304. numpy-1.10.0.post2/numpy/lib/tests/test_io.py +1916 -0
  305. numpy-1.10.0.post2/numpy/lib/tests/test_nanfunctions.py +707 -0
  306. numpy-1.10.0.post2/numpy/lib/tests/test_packbits.py +26 -0
  307. numpy-1.10.0.post2/numpy/lib/tests/test_polynomial.py +188 -0
  308. numpy-1.10.0.post2/numpy/lib/tests/test_recfunctions.py +734 -0
  309. numpy-1.10.0.post2/numpy/lib/tests/test_shape_base.py +386 -0
  310. numpy-1.10.0.post2/numpy/lib/tests/test_stride_tricks.py +405 -0
  311. numpy-1.10.0.post2/numpy/lib/tests/test_twodim_base.py +535 -0
  312. numpy-1.10.0.post2/numpy/lib/tests/test_type_check.py +332 -0
  313. numpy-1.10.0.post2/numpy/lib/twodim_base.py +1007 -0
  314. numpy-1.10.0.post2/numpy/lib/type_check.py +596 -0
  315. numpy-1.10.0.post2/numpy/lib/utils.py +1122 -0
  316. numpy-1.10.0.post2/numpy/linalg/lapack_lite/python_xerbla.c +46 -0
  317. numpy-1.10.0.post2/numpy/linalg/lapack_litemodule.c +358 -0
  318. numpy-1.10.0.post2/numpy/linalg/linalg.py +2406 -0
  319. numpy-1.10.0.post2/numpy/linalg/tests/test_build.py +59 -0
  320. numpy-1.10.0.post2/numpy/linalg/tests/test_linalg.py +1351 -0
  321. numpy-1.10.0.post2/numpy/linalg/tests/test_regression.py +95 -0
  322. numpy-1.10.0.post2/numpy/linalg/umath_linalg.c.src +3236 -0
  323. numpy-1.10.0.post2/numpy/ma/__init__.py +56 -0
  324. numpy-1.10.0.post2/numpy/ma/bench.py +131 -0
  325. numpy-1.10.0.post2/numpy/ma/core.py +7608 -0
  326. numpy-1.10.0.post2/numpy/ma/extras.py +1953 -0
  327. numpy-1.10.0.post2/numpy/ma/mrecords.py +796 -0
  328. numpy-1.10.0.post2/numpy/ma/setup.py +13 -0
  329. numpy-1.10.0.post2/numpy/ma/tests/test_core.py +4100 -0
  330. numpy-1.10.0.post2/numpy/ma/tests/test_extras.py +1132 -0
  331. numpy-1.10.0.post2/numpy/ma/tests/test_mrecords.py +520 -0
  332. numpy-1.10.0.post2/numpy/ma/tests/test_old_ma.py +879 -0
  333. numpy-1.10.0.post2/numpy/ma/tests/test_regression.py +80 -0
  334. numpy-1.10.0.post2/numpy/ma/tests/test_subclassing.py +338 -0
  335. numpy-1.10.0.post2/numpy/ma/testutils.py +289 -0
  336. numpy-1.10.0.post2/numpy/ma/timer_comparison.py +440 -0
  337. numpy-1.10.0.post2/numpy/matlib.py +358 -0
  338. numpy-1.10.0.post2/numpy/matrixlib/defmatrix.py +1232 -0
  339. numpy-1.10.0.post2/numpy/matrixlib/tests/test_defmatrix.py +449 -0
  340. numpy-1.10.0.post2/numpy/matrixlib/tests/test_multiarray.py +23 -0
  341. numpy-1.10.0.post2/numpy/matrixlib/tests/test_numeric.py +23 -0
  342. numpy-1.10.0.post2/numpy/matrixlib/tests/test_regression.py +37 -0
  343. numpy-1.10.0.post2/numpy/polynomial/_polybase.py +962 -0
  344. numpy-1.10.0.post2/numpy/polynomial/chebyshev.py +2056 -0
  345. numpy-1.10.0.post2/numpy/polynomial/hermite.py +1831 -0
  346. numpy-1.10.0.post2/numpy/polynomial/hermite_e.py +1828 -0
  347. numpy-1.10.0.post2/numpy/polynomial/laguerre.py +1780 -0
  348. numpy-1.10.0.post2/numpy/polynomial/legendre.py +1808 -0
  349. numpy-1.10.0.post2/numpy/polynomial/polyutils.py +403 -0
  350. numpy-1.10.0.post2/numpy/random/mtrand/distributions.c +912 -0
  351. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.c +34805 -0
  352. numpy-1.10.0.post2/numpy/random/mtrand/mtrand.pyx +4766 -0
  353. numpy-1.10.0.post2/numpy/random/setup.py +61 -0
  354. numpy-1.10.0.post2/numpy/random/tests/test_random.py +723 -0
  355. numpy-1.10.0.post2/numpy/random/tests/test_regression.py +117 -0
  356. numpy-1.10.0.post2/numpy/setup.py +29 -0
  357. numpy-1.10.0.post2/numpy/testing/__init__.py +15 -0
  358. numpy-1.10.0.post2/numpy/testing/decorators.py +271 -0
  359. numpy-1.10.0.post2/numpy/testing/noseclasses.py +353 -0
  360. numpy-1.10.0.post2/numpy/testing/nosetester.py +511 -0
  361. numpy-1.10.0.post2/numpy/testing/print_coercion_tables.py +91 -0
  362. numpy-1.10.0.post2/numpy/testing/setup.py +20 -0
  363. numpy-1.10.0.post2/numpy/testing/tests/test_decorators.py +182 -0
  364. numpy-1.10.0.post2/numpy/testing/tests/test_utils.py +781 -0
  365. numpy-1.10.0.post2/numpy/testing/utils.py +1831 -0
  366. numpy-1.10.0.post2/numpy/tests/test_ctypeslib.py +106 -0
  367. numpy-1.10.0.post2/numpy/tests/test_matlib.py +55 -0
  368. numpy-1.10.0.post2/numpy/tests/test_scripts.py +69 -0
  369. numpy-1.10.0.post2/numpy/version.py +10 -0
  370. numpy-1.10.0.post2/setup.py +260 -0
  371. numpy-1.10.0.post2/site.cfg.example +193 -0
  372. numpy-1.10.0.post2/tmp.txt +789 -0
  373. numpy-1.10.0.post2/tools/swig/README +145 -0
  374. numpy-1.10.0.post2/tools/swig/numpy.i +3161 -0
  375. numpy-1.10.0.post2/tools/swig/test/Array.i +135 -0
  376. numpy-1.10.0.post2/tools/swig/test/ArrayZ.cxx +131 -0
  377. numpy-1.10.0.post2/tools/swig/test/ArrayZ.h +56 -0
  378. numpy-1.10.0.post2/tools/swig/test/Flat.cxx +36 -0
  379. numpy-1.10.0.post2/tools/swig/test/Flat.h +34 -0
  380. numpy-1.10.0.post2/tools/swig/test/Flat.i +36 -0
  381. numpy-1.10.0.post2/tools/swig/test/Makefile +37 -0
  382. numpy-1.10.0.post2/tools/swig/test/setup.py +71 -0
  383. numpy-1.10.0.post2/tools/swig/test/testArray.py +385 -0
  384. numpy-1.10.0.post2/tools/swig/test/testFarray.py +159 -0
  385. numpy-1.10.0.post2/tools/swig/test/testFlat.py +200 -0
  386. numpy-1.10.0.post2/tools/swig/test/testFortran.py +173 -0
  387. numpy-1.10.0.post2/tools/swig/test/testMatrix.py +362 -0
  388. numpy-1.10.0.post2/tools/swig/test/testSuperTensor.py +388 -0
  389. numpy-1.10.0.post2/tools/swig/test/testTensor.py +402 -0
  390. numpy-1.10.0.post2/tools/swig/test/testVector.py +381 -0
  391. numpy-1.9.3/INSTALL.txt +0 -138
  392. numpy-1.9.3/LICENSE.txt +0 -30
  393. numpy-1.9.3/MANIFEST.in +0 -26
  394. numpy-1.9.3/PKG-INFO +0 -39
  395. numpy-1.9.3/doc/release/1.9.3-notes.rst +0 -23
  396. numpy-1.9.3/doc/source/conf.py +0 -331
  397. numpy-1.9.3/doc/source/dev/gitwash/branch_list.png +0 -0
  398. numpy-1.9.3/doc/source/dev/gitwash/branch_list_compare.png +0 -0
  399. numpy-1.9.3/doc/source/dev/gitwash/development_workflow.rst +0 -568
  400. numpy-1.9.3/doc/source/dev/gitwash/git_links.inc +0 -88
  401. numpy-1.9.3/doc/source/dev/gitwash/index.rst +0 -14
  402. numpy-1.9.3/doc/source/dev/index.rst +0 -10
  403. numpy-1.9.3/doc/source/reference/arrays.classes.rst +0 -427
  404. numpy-1.9.3/doc/source/reference/arrays.dtypes.rst +0 -534
  405. numpy-1.9.3/doc/source/reference/arrays.indexing.rst +0 -550
  406. numpy-1.9.3/doc/source/reference/arrays.interface.rst +0 -336
  407. numpy-1.9.3/doc/source/reference/arrays.ndarray.rst +0 -609
  408. numpy-1.9.3/doc/source/reference/arrays.scalars.rst +0 -291
  409. numpy-1.9.3/doc/source/reference/c-api.array.rst +0 -3362
  410. numpy-1.9.3/doc/source/reference/c-api.config.rst +0 -103
  411. numpy-1.9.3/doc/source/reference/c-api.coremath.rst +0 -420
  412. numpy-1.9.3/doc/source/reference/c-api.dtype.rst +0 -376
  413. numpy-1.9.3/doc/source/reference/c-api.generalized-ufuncs.rst +0 -171
  414. numpy-1.9.3/doc/source/reference/c-api.iterator.rst +0 -1298
  415. numpy-1.9.3/doc/source/reference/c-api.types-and-structures.rst +0 -1204
  416. numpy-1.9.3/doc/source/reference/c-api.ufunc.rst +0 -399
  417. numpy-1.9.3/doc/source/reference/index.rst +0 -44
  418. numpy-1.9.3/doc/source/reference/internals.code-explanations.rst +0 -666
  419. numpy-1.9.3/doc/source/reference/routines.array-manipulation.rst +0 -113
  420. numpy-1.9.3/doc/source/reference/routines.io.rst +0 -74
  421. numpy-1.9.3/doc/source/reference/routines.linalg.rst +0 -88
  422. numpy-1.9.3/doc/source/reference/routines.ma.rst +0 -405
  423. numpy-1.9.3/doc/source/reference/routines.sort.rst +0 -42
  424. numpy-1.9.3/doc/source/reference/routines.statistics.rst +0 -55
  425. numpy-1.9.3/doc/source/reference/swig.interface-file.rst +0 -1055
  426. numpy-1.9.3/doc/source/reference/swig.testing.rst +0 -166
  427. numpy-1.9.3/doc/source/reference/ufuncs.rst +0 -651
  428. numpy-1.9.3/doc/source/release.rst +0 -19
  429. numpy-1.9.3/doc/source/user/basics.io.genfromtxt.rst +0 -531
  430. numpy-1.9.3/doc/source/user/basics.rec.rst +0 -7
  431. numpy-1.9.3/doc/source/user/c-info.beyond-basics.rst +0 -560
  432. numpy-1.9.3/doc/source/user/c-info.how-to-extend.rst +0 -642
  433. numpy-1.9.3/doc/source/user/c-info.python-as-glue.rst +0 -1528
  434. numpy-1.9.3/doc/source/user/c-info.ufunc-tutorial.rst +0 -1211
  435. numpy-1.9.3/doc/source/user/install.rst +0 -180
  436. numpy-1.9.3/numpy/__init__.py +0 -216
  437. numpy-1.9.3/numpy/_import_tools.py +0 -348
  438. numpy-1.9.3/numpy/add_newdocs.py +0 -7518
  439. numpy-1.9.3/numpy/compat/_inspect.py +0 -221
  440. numpy-1.9.3/numpy/compat/py3k.py +0 -89
  441. numpy-1.9.3/numpy/compat/setup.py +0 -12
  442. numpy-1.9.3/numpy/core/__init__.py +0 -78
  443. numpy-1.9.3/numpy/core/_internal.py +0 -570
  444. numpy-1.9.3/numpy/core/_methods.py +0 -134
  445. numpy-1.9.3/numpy/core/arrayprint.py +0 -752
  446. numpy-1.9.3/numpy/core/blasdot/_dotblas.c +0 -1255
  447. numpy-1.9.3/numpy/core/blasdot/apple_sgemv_patch.c +0 -216
  448. numpy-1.9.3/numpy/core/blasdot/cblas.h +0 -578
  449. numpy-1.9.3/numpy/core/code_generators/cversions.txt +0 -31
  450. numpy-1.9.3/numpy/core/code_generators/generate_ufunc_api.py +0 -219
  451. numpy-1.9.3/numpy/core/code_generators/generate_umath.py +0 -972
  452. numpy-1.9.3/numpy/core/code_generators/numpy_api.py +0 -412
  453. numpy-1.9.3/numpy/core/code_generators/ufunc_docstrings.py +0 -3419
  454. numpy-1.9.3/numpy/core/defchararray.py +0 -2687
  455. numpy-1.9.3/numpy/core/fromnumeric.py +0 -2938
  456. numpy-1.9.3/numpy/core/function_base.py +0 -190
  457. numpy-1.9.3/numpy/core/getlimits.py +0 -306
  458. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.c +0 -38
  459. numpy-1.9.3/numpy/core/include/numpy/fenv/fenv.h +0 -224
  460. numpy-1.9.3/numpy/core/include/numpy/ndarrayobject.h +0 -237
  461. numpy-1.9.3/numpy/core/include/numpy/ndarraytypes.h +0 -1820
  462. numpy-1.9.3/numpy/core/include/numpy/npy_3kcompat.h +0 -506
  463. numpy-1.9.3/numpy/core/include/numpy/npy_common.h +0 -1038
  464. numpy-1.9.3/numpy/core/include/numpy/npy_cpu.h +0 -122
  465. numpy-1.9.3/numpy/core/include/numpy/npy_endian.h +0 -49
  466. numpy-1.9.3/numpy/core/include/numpy/npy_math.h +0 -479
  467. numpy-1.9.3/numpy/core/include/numpy/numpyconfig.h +0 -35
  468. numpy-1.9.3/numpy/core/machar.py +0 -338
  469. numpy-1.9.3/numpy/core/memmap.py +0 -308
  470. numpy-1.9.3/numpy/core/numeric.py +0 -2842
  471. numpy-1.9.3/numpy/core/numerictypes.py +0 -1042
  472. numpy-1.9.3/numpy/core/records.py +0 -804
  473. numpy-1.9.3/numpy/core/setup.py +0 -1016
  474. numpy-1.9.3/numpy/core/setup_common.py +0 -330
  475. numpy-1.9.3/numpy/core/shape_base.py +0 -277
  476. numpy-1.9.3/numpy/core/src/multiarray/alloc.c +0 -241
  477. numpy-1.9.3/numpy/core/src/multiarray/arrayobject.c +0 -1791
  478. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.c.src +0 -4372
  479. numpy-1.9.3/numpy/core/src/multiarray/arraytypes.h +0 -13
  480. numpy-1.9.3/numpy/core/src/multiarray/buffer.c +0 -954
  481. numpy-1.9.3/numpy/core/src/multiarray/calculation.c +0 -1229
  482. numpy-1.9.3/numpy/core/src/multiarray/common.c +0 -798
  483. numpy-1.9.3/numpy/core/src/multiarray/common.h +0 -328
  484. numpy-1.9.3/numpy/core/src/multiarray/conversion_utils.c +0 -1240
  485. numpy-1.9.3/numpy/core/src/multiarray/convert.c +0 -589
  486. numpy-1.9.3/numpy/core/src/multiarray/convert_datatype.c +0 -2199
  487. numpy-1.9.3/numpy/core/src/multiarray/ctors.c +0 -3785
  488. numpy-1.9.3/numpy/core/src/multiarray/datetime.c +0 -3823
  489. numpy-1.9.3/numpy/core/src/multiarray/datetime_busday.c +0 -1322
  490. numpy-1.9.3/numpy/core/src/multiarray/datetime_busdaycal.c +0 -552
  491. numpy-1.9.3/numpy/core/src/multiarray/datetime_strings.c +0 -1772
  492. numpy-1.9.3/numpy/core/src/multiarray/descriptor.c +0 -3658
  493. numpy-1.9.3/numpy/core/src/multiarray/dtype_transfer.c +0 -4232
  494. numpy-1.9.3/numpy/core/src/multiarray/einsum.c.src +0 -3013
  495. numpy-1.9.3/numpy/core/src/multiarray/getset.c +0 -984
  496. numpy-1.9.3/numpy/core/src/multiarray/hashdescr.c +0 -319
  497. numpy-1.9.3/numpy/core/src/multiarray/item_selection.c +0 -2711
  498. numpy-1.9.3/numpy/core/src/multiarray/iterators.c +0 -2160
  499. numpy-1.9.3/numpy/core/src/multiarray/lowlevel_strided_loops.c.src +0 -1767
  500. numpy-1.9.3/numpy/core/src/multiarray/mapping.c +0 -3316
  501. numpy-1.9.3/numpy/core/src/multiarray/mapping.h +0 -73
  502. numpy-1.9.3/numpy/core/src/multiarray/methods.c +0 -2497
  503. numpy-1.9.3/numpy/core/src/multiarray/multiarray_tests.c.src +0 -977
  504. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.c +0 -4200
  505. numpy-1.9.3/numpy/core/src/multiarray/multiarraymodule.h +0 -4
  506. numpy-1.9.3/numpy/core/src/multiarray/nditer_api.c +0 -2809
  507. numpy-1.9.3/numpy/core/src/multiarray/nditer_constr.c +0 -3159
  508. numpy-1.9.3/numpy/core/src/multiarray/nditer_pywrap.c +0 -2492
  509. numpy-1.9.3/numpy/core/src/multiarray/number.c +0 -1057
  510. numpy-1.9.3/numpy/core/src/multiarray/number.h +0 -76
  511. numpy-1.9.3/numpy/core/src/multiarray/numpymemoryview.c +0 -309
  512. numpy-1.9.3/numpy/core/src/multiarray/numpyos.c +0 -683
  513. numpy-1.9.3/numpy/core/src/multiarray/scalarapi.c +0 -861
  514. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.c.src +0 -4270
  515. numpy-1.9.3/numpy/core/src/multiarray/scalartypes.h +0 -52
  516. numpy-1.9.3/numpy/core/src/multiarray/shape.c +0 -1141
  517. numpy-1.9.3/numpy/core/src/multiarray/ucsnarrow.c +0 -173
  518. numpy-1.9.3/numpy/core/src/npymath/ieee754.c.src +0 -814
  519. numpy-1.9.3/numpy/core/src/npymath/npy_math.c.src +0 -527
  520. numpy-1.9.3/numpy/core/src/npymath/npy_math_complex.c.src +0 -291
  521. numpy-1.9.3/numpy/core/src/npymath/npy_math_private.h +0 -539
  522. numpy-1.9.3/numpy/core/src/npysort/heapsort.c.src +0 -341
  523. numpy-1.9.3/numpy/core/src/npysort/mergesort.c.src +0 -428
  524. numpy-1.9.3/numpy/core/src/npysort/npysort_common.h +0 -367
  525. numpy-1.9.3/numpy/core/src/npysort/quicksort.c.src +0 -363
  526. numpy-1.9.3/numpy/core/src/npysort/selection.c.src +0 -474
  527. numpy-1.9.3/numpy/core/src/private/npy_config.h +0 -68
  528. numpy-1.9.3/numpy/core/src/private/npy_partition.h.src +0 -138
  529. numpy-1.9.3/numpy/core/src/private/npy_sort.h +0 -194
  530. numpy-1.9.3/numpy/core/src/private/scalarmathmodule.h.src +0 -42
  531. numpy-1.9.3/numpy/core/src/private/ufunc_override.h +0 -384
  532. numpy-1.9.3/numpy/core/src/scalarmathmodule.c.src +0 -1980
  533. numpy-1.9.3/numpy/core/src/umath/funcs.inc.src +0 -715
  534. numpy-1.9.3/numpy/core/src/umath/loops.c.src +0 -2654
  535. numpy-1.9.3/numpy/core/src/umath/loops.h.src +0 -501
  536. numpy-1.9.3/numpy/core/src/umath/operand_flag_tests.c.src +0 -105
  537. numpy-1.9.3/numpy/core/src/umath/simd.inc.src +0 -881
  538. numpy-1.9.3/numpy/core/src/umath/test_rational.c.src +0 -1404
  539. numpy-1.9.3/numpy/core/src/umath/ufunc_object.c +0 -5520
  540. numpy-1.9.3/numpy/core/src/umath/ufunc_type_resolution.c +0 -2164
  541. numpy-1.9.3/numpy/core/src/umath/umath_tests.c.src +0 -341
  542. numpy-1.9.3/numpy/core/src/umath/umathmodule.c +0 -561
  543. numpy-1.9.3/numpy/core/tests/test_abc.py +0 -45
  544. numpy-1.9.3/numpy/core/tests/test_api.py +0 -514
  545. numpy-1.9.3/numpy/core/tests/test_arrayprint.py +0 -167
  546. numpy-1.9.3/numpy/core/tests/test_blasdot.py +0 -249
  547. numpy-1.9.3/numpy/core/tests/test_datetime.py +0 -1781
  548. numpy-1.9.3/numpy/core/tests/test_defchararray.py +0 -642
  549. numpy-1.9.3/numpy/core/tests/test_deprecations.py +0 -512
  550. numpy-1.9.3/numpy/core/tests/test_dtype.py +0 -542
  551. numpy-1.9.3/numpy/core/tests/test_einsum.py +0 -583
  552. numpy-1.9.3/numpy/core/tests/test_errstate.py +0 -51
  553. numpy-1.9.3/numpy/core/tests/test_function_base.py +0 -111
  554. numpy-1.9.3/numpy/core/tests/test_getlimits.py +0 -86
  555. numpy-1.9.3/numpy/core/tests/test_half.py +0 -439
  556. numpy-1.9.3/numpy/core/tests/test_indexerrors.py +0 -127
  557. numpy-1.9.3/numpy/core/tests/test_indexing.py +0 -1014
  558. numpy-1.9.3/numpy/core/tests/test_item_selection.py +0 -70
  559. numpy-1.9.3/numpy/core/tests/test_machar.py +0 -30
  560. numpy-1.9.3/numpy/core/tests/test_memmap.py +0 -127
  561. numpy-1.9.3/numpy/core/tests/test_multiarray.py +0 -4645
  562. numpy-1.9.3/numpy/core/tests/test_multiarray_assignment.py +0 -80
  563. numpy-1.9.3/numpy/core/tests/test_nditer.py +0 -2630
  564. numpy-1.9.3/numpy/core/tests/test_numeric.py +0 -2117
  565. numpy-1.9.3/numpy/core/tests/test_numerictypes.py +0 -377
  566. numpy-1.9.3/numpy/core/tests/test_print.py +0 -245
  567. numpy-1.9.3/numpy/core/tests/test_records.py +0 -185
  568. numpy-1.9.3/numpy/core/tests/test_regression.py +0 -2115
  569. numpy-1.9.3/numpy/core/tests/test_scalarinherit.py +0 -34
  570. numpy-1.9.3/numpy/core/tests/test_scalarmath.py +0 -275
  571. numpy-1.9.3/numpy/core/tests/test_shape_base.py +0 -250
  572. numpy-1.9.3/numpy/core/tests/test_ufunc.py +0 -1153
  573. numpy-1.9.3/numpy/core/tests/test_umath.py +0 -1695
  574. numpy-1.9.3/numpy/core/tests/test_umath_complex.py +0 -537
  575. numpy-1.9.3/numpy/core/tests/test_unicode.py +0 -357
  576. numpy-1.9.3/numpy/distutils/__init__.py +0 -39
  577. numpy-1.9.3/numpy/distutils/ccompiler.py +0 -656
  578. numpy-1.9.3/numpy/distutils/command/autodist.py +0 -43
  579. numpy-1.9.3/numpy/distutils/command/build.py +0 -39
  580. numpy-1.9.3/numpy/distutils/command/build_clib.py +0 -284
  581. numpy-1.9.3/numpy/distutils/command/build_ext.py +0 -515
  582. numpy-1.9.3/numpy/distutils/command/config.py +0 -476
  583. numpy-1.9.3/numpy/distutils/exec_command.py +0 -618
  584. numpy-1.9.3/numpy/distutils/fcompiler/compaq.py +0 -128
  585. numpy-1.9.3/numpy/distutils/fcompiler/gnu.py +0 -390
  586. numpy-1.9.3/numpy/distutils/fcompiler/intel.py +0 -205
  587. numpy-1.9.3/numpy/distutils/fcompiler/pg.py +0 -60
  588. numpy-1.9.3/numpy/distutils/fcompiler/sun.py +0 -52
  589. numpy-1.9.3/numpy/distutils/intelccompiler.py +0 -45
  590. numpy-1.9.3/numpy/distutils/lib2def.py +0 -116
  591. numpy-1.9.3/numpy/distutils/mingw32ccompiler.py +0 -582
  592. numpy-1.9.3/numpy/distutils/misc_util.py +0 -2271
  593. numpy-1.9.3/numpy/distutils/npy_pkg_config.py +0 -464
  594. numpy-1.9.3/numpy/distutils/system_info.py +0 -2319
  595. numpy-1.9.3/numpy/distutils/tests/f2py_ext/tests/test_fib2.py +0 -13
  596. numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext/tests/test_foo.py +0 -12
  597. numpy-1.9.3/numpy/distutils/tests/gen_ext/tests/test_fib3.py +0 -12
  598. numpy-1.9.3/numpy/distutils/tests/pyrex_ext/tests/test_primes.py +0 -14
  599. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example.py +0 -18
  600. numpy-1.9.3/numpy/distutils/tests/swig_ext/tests/test_example2.py +0 -16
  601. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_gnu.py +0 -53
  602. numpy-1.9.3/numpy/distutils/tests/test_fcompiler_intel.py +0 -36
  603. numpy-1.9.3/numpy/distutils/tests/test_misc_util.py +0 -75
  604. numpy-1.9.3/numpy/distutils/tests/test_npy_pkg_config.py +0 -98
  605. numpy-1.9.3/numpy/distutils/unixccompiler.py +0 -113
  606. numpy-1.9.3/numpy/doc/byteswapping.py +0 -147
  607. numpy-1.9.3/numpy/doc/creation.py +0 -144
  608. numpy-1.9.3/numpy/doc/glossary.py +0 -418
  609. numpy-1.9.3/numpy/doc/indexing.py +0 -437
  610. numpy-1.9.3/numpy/doc/structured_arrays.py +0 -223
  611. numpy-1.9.3/numpy/f2py/__init__.py +0 -49
  612. numpy-1.9.3/numpy/f2py/auxfuncs.py +0 -711
  613. numpy-1.9.3/numpy/f2py/capi_maps.py +0 -773
  614. numpy-1.9.3/numpy/f2py/cb_rules.py +0 -539
  615. numpy-1.9.3/numpy/f2py/cfuncs.py +0 -1224
  616. numpy-1.9.3/numpy/f2py/common_rules.py +0 -132
  617. numpy-1.9.3/numpy/f2py/crackfortran.py +0 -2870
  618. numpy-1.9.3/numpy/f2py/diagnose.py +0 -149
  619. numpy-1.9.3/numpy/f2py/f2py2e.py +0 -598
  620. numpy-1.9.3/numpy/f2py/f2py_testing.py +0 -46
  621. numpy-1.9.3/numpy/f2py/f90mod_rules.py +0 -246
  622. numpy-1.9.3/numpy/f2py/func2subr.py +0 -291
  623. numpy-1.9.3/numpy/f2py/rules.py +0 -1448
  624. numpy-1.9.3/numpy/f2py/setup.py +0 -129
  625. numpy-1.9.3/numpy/f2py/src/fortranobject.c +0 -972
  626. numpy-1.9.3/numpy/f2py/src/fortranobject.h +0 -162
  627. numpy-1.9.3/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +0 -223
  628. numpy-1.9.3/numpy/f2py/tests/test_array_from_pyobj.py +0 -559
  629. numpy-1.9.3/numpy/f2py/tests/test_assumed_shape.py +0 -37
  630. numpy-1.9.3/numpy/f2py/tests/test_callback.py +0 -132
  631. numpy-1.9.3/numpy/f2py/tests/test_kind.py +0 -36
  632. numpy-1.9.3/numpy/f2py/tests/test_mixed.py +0 -41
  633. numpy-1.9.3/numpy/f2py/tests/test_regression.py +0 -32
  634. numpy-1.9.3/numpy/f2py/tests/test_return_character.py +0 -142
  635. numpy-1.9.3/numpy/f2py/tests/test_return_complex.py +0 -169
  636. numpy-1.9.3/numpy/f2py/tests/test_return_integer.py +0 -178
  637. numpy-1.9.3/numpy/f2py/tests/test_return_logical.py +0 -187
  638. numpy-1.9.3/numpy/f2py/tests/test_return_real.py +0 -203
  639. numpy-1.9.3/numpy/f2py/tests/test_size.py +0 -47
  640. numpy-1.9.3/numpy/f2py/tests/util.py +0 -353
  641. numpy-1.9.3/numpy/f2py/use_rules.py +0 -109
  642. numpy-1.9.3/numpy/fft/fftpack.c +0 -1501
  643. numpy-1.9.3/numpy/fft/fftpack.h +0 -28
  644. numpy-1.9.3/numpy/fft/fftpack.py +0 -1169
  645. numpy-1.9.3/numpy/fft/fftpack_litemodule.c +0 -371
  646. numpy-1.9.3/numpy/fft/info.py +0 -179
  647. numpy-1.9.3/numpy/fft/setup.py +0 -20
  648. numpy-1.9.3/numpy/fft/tests/test_fftpack.py +0 -75
  649. numpy-1.9.3/numpy/fft/tests/test_helper.py +0 -78
  650. numpy-1.9.3/numpy/lib/_iotools.py +0 -891
  651. numpy-1.9.3/numpy/lib/arraypad.py +0 -1475
  652. numpy-1.9.3/numpy/lib/arraysetops.py +0 -464
  653. numpy-1.9.3/numpy/lib/arrayterator.py +0 -226
  654. numpy-1.9.3/numpy/lib/financial.py +0 -737
  655. numpy-1.9.3/numpy/lib/format.py +0 -771
  656. numpy-1.9.3/numpy/lib/function_base.py +0 -3884
  657. numpy-1.9.3/numpy/lib/index_tricks.py +0 -869
  658. numpy-1.9.3/numpy/lib/info.py +0 -151
  659. numpy-1.9.3/numpy/lib/nanfunctions.py +0 -1158
  660. numpy-1.9.3/numpy/lib/npyio.py +0 -1871
  661. numpy-1.9.3/numpy/lib/polynomial.py +0 -1271
  662. numpy-1.9.3/numpy/lib/recfunctions.py +0 -1003
  663. numpy-1.9.3/numpy/lib/setup.py +0 -23
  664. numpy-1.9.3/numpy/lib/shape_base.py +0 -865
  665. numpy-1.9.3/numpy/lib/src/_compiled_base.c +0 -1761
  666. numpy-1.9.3/numpy/lib/stride_tricks.py +0 -123
  667. numpy-1.9.3/numpy/lib/tests/test__iotools.py +0 -326
  668. numpy-1.9.3/numpy/lib/tests/test__version.py +0 -57
  669. numpy-1.9.3/numpy/lib/tests/test_arraypad.py +0 -560
  670. numpy-1.9.3/numpy/lib/tests/test_arraysetops.py +0 -301
  671. numpy-1.9.3/numpy/lib/tests/test_financial.py +0 -160
  672. numpy-1.9.3/numpy/lib/tests/test_format.py +0 -716
  673. numpy-1.9.3/numpy/lib/tests/test_function_base.py +0 -2145
  674. numpy-1.9.3/numpy/lib/tests/test_index_tricks.py +0 -289
  675. numpy-1.9.3/numpy/lib/tests/test_io.py +0 -1754
  676. numpy-1.9.3/numpy/lib/tests/test_nanfunctions.py +0 -774
  677. numpy-1.9.3/numpy/lib/tests/test_polynomial.py +0 -177
  678. numpy-1.9.3/numpy/lib/tests/test_recfunctions.py +0 -705
  679. numpy-1.9.3/numpy/lib/tests/test_shape_base.py +0 -368
  680. numpy-1.9.3/numpy/lib/tests/test_stride_tricks.py +0 -238
  681. numpy-1.9.3/numpy/lib/tests/test_twodim_base.py +0 -504
  682. numpy-1.9.3/numpy/lib/tests/test_type_check.py +0 -328
  683. numpy-1.9.3/numpy/lib/twodim_base.py +0 -1003
  684. numpy-1.9.3/numpy/lib/type_check.py +0 -605
  685. numpy-1.9.3/numpy/lib/utils.py +0 -1176
  686. numpy-1.9.3/numpy/linalg/lapack_lite/python_xerbla.c +0 -47
  687. numpy-1.9.3/numpy/linalg/lapack_litemodule.c +0 -362
  688. numpy-1.9.3/numpy/linalg/linalg.py +0 -2136
  689. numpy-1.9.3/numpy/linalg/tests/test_build.py +0 -53
  690. numpy-1.9.3/numpy/linalg/tests/test_linalg.py +0 -1156
  691. numpy-1.9.3/numpy/linalg/tests/test_regression.py +0 -90
  692. numpy-1.9.3/numpy/linalg/umath_linalg.c.src +0 -3210
  693. numpy-1.9.3/numpy/ma/__init__.py +0 -58
  694. numpy-1.9.3/numpy/ma/bench.py +0 -166
  695. numpy-1.9.3/numpy/ma/core.py +0 -7374
  696. numpy-1.9.3/numpy/ma/extras.py +0 -1932
  697. numpy-1.9.3/numpy/ma/mrecords.py +0 -734
  698. numpy-1.9.3/numpy/ma/setup.py +0 -20
  699. numpy-1.9.3/numpy/ma/tests/test_core.py +0 -3706
  700. numpy-1.9.3/numpy/ma/tests/test_extras.py +0 -954
  701. numpy-1.9.3/numpy/ma/tests/test_mrecords.py +0 -521
  702. numpy-1.9.3/numpy/ma/tests/test_old_ma.py +0 -869
  703. numpy-1.9.3/numpy/ma/tests/test_regression.py +0 -75
  704. numpy-1.9.3/numpy/ma/tests/test_subclassing.py +0 -236
  705. numpy-1.9.3/numpy/ma/testutils.py +0 -240
  706. numpy-1.9.3/numpy/ma/timer_comparison.py +0 -459
  707. numpy-1.9.3/numpy/matlib.py +0 -358
  708. numpy-1.9.3/numpy/matrixlib/defmatrix.py +0 -1094
  709. numpy-1.9.3/numpy/matrixlib/tests/test_defmatrix.py +0 -400
  710. numpy-1.9.3/numpy/matrixlib/tests/test_multiarray.py +0 -18
  711. numpy-1.9.3/numpy/matrixlib/tests/test_numeric.py +0 -10
  712. numpy-1.9.3/numpy/matrixlib/tests/test_regression.py +0 -34
  713. numpy-1.9.3/numpy/polynomial/_polybase.py +0 -962
  714. numpy-1.9.3/numpy/polynomial/chebyshev.py +0 -2056
  715. numpy-1.9.3/numpy/polynomial/hermite.py +0 -1789
  716. numpy-1.9.3/numpy/polynomial/hermite_e.py +0 -1786
  717. numpy-1.9.3/numpy/polynomial/laguerre.py +0 -1781
  718. numpy-1.9.3/numpy/polynomial/legendre.py +0 -1809
  719. numpy-1.9.3/numpy/polynomial/polytemplate.py +0 -927
  720. numpy-1.9.3/numpy/polynomial/polyutils.py +0 -403
  721. numpy-1.9.3/numpy/random/mtrand/distributions.c +0 -892
  722. numpy-1.9.3/numpy/random/mtrand/mtrand.c +0 -36656
  723. numpy-1.9.3/numpy/random/mtrand/mtrand.pyx +0 -4706
  724. numpy-1.9.3/numpy/random/setup.py +0 -74
  725. numpy-1.9.3/numpy/random/tests/test_random.py +0 -707
  726. numpy-1.9.3/numpy/random/tests/test_regression.py +0 -86
  727. numpy-1.9.3/numpy/setup.py +0 -27
  728. numpy-1.9.3/numpy/testing/__init__.py +0 -16
  729. numpy-1.9.3/numpy/testing/decorators.py +0 -271
  730. numpy-1.9.3/numpy/testing/noseclasses.py +0 -353
  731. numpy-1.9.3/numpy/testing/nosetester.py +0 -504
  732. numpy-1.9.3/numpy/testing/print_coercion_tables.py +0 -89
  733. numpy-1.9.3/numpy/testing/setup.py +0 -20
  734. numpy-1.9.3/numpy/testing/tests/test_decorators.py +0 -185
  735. numpy-1.9.3/numpy/testing/tests/test_utils.py +0 -558
  736. numpy-1.9.3/numpy/testing/utils.py +0 -1715
  737. numpy-1.9.3/numpy/tests/test_ctypeslib.py +0 -102
  738. numpy-1.9.3/numpy/tests/test_matlib.py +0 -55
  739. numpy-1.9.3/numpy/version.py +0 -10
  740. numpy-1.9.3/setup.py +0 -251
  741. numpy-1.9.3/site.cfg.example +0 -157
  742. numpy-1.9.3/tools/swig/README +0 -135
  743. numpy-1.9.3/tools/swig/numpy.i +0 -3085
  744. numpy-1.9.3/tools/swig/test/Array.i +0 -102
  745. numpy-1.9.3/tools/swig/test/Makefile +0 -34
  746. numpy-1.9.3/tools/swig/test/setup.py +0 -64
  747. numpy-1.9.3/tools/swig/test/testArray.py +0 -284
  748. numpy-1.9.3/tools/swig/test/testFarray.py +0 -159
  749. numpy-1.9.3/tools/swig/test/testFortran.py +0 -173
  750. numpy-1.9.3/tools/swig/test/testMatrix.py +0 -362
  751. numpy-1.9.3/tools/swig/test/testSuperTensor.py +0 -388
  752. numpy-1.9.3/tools/swig/test/testTensor.py +0 -402
  753. numpy-1.9.3/tools/swig/test/testVector.py +0 -381
  754. {numpy-1.9.3 → numpy-1.10.0.post2}/BENTO_BUILD.txt +0 -0
  755. {numpy-1.9.3 → numpy-1.10.0.post2}/COMPATIBILITY +0 -0
  756. {numpy-1.9.3 → numpy-1.10.0.post2}/DEV_README.txt +0 -0
  757. {numpy-1.9.3 → numpy-1.10.0.post2}/README.txt +0 -0
  758. {numpy-1.9.3 → numpy-1.10.0.post2}/THANKS.txt +0 -0
  759. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/Makefile +0 -0
  760. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/BUGS.txt +0 -0
  761. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/FAQ.txt +0 -0
  762. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/HISTORY.txt +0 -0
  763. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Makefile +0 -0
  764. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/OLDNEWS.txt +0 -0
  765. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/README.txt +0 -0
  766. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-1.x.txt +0 -0
  767. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-2.x.txt +0 -0
  768. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-3.x.txt +0 -0
  769. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/Release-4.x.txt +0 -0
  770. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TESTING.txt +0 -0
  771. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/THANKS.txt +0 -0
  772. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/TODO.txt +0 -0
  773. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/apps.tex +0 -0
  774. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/bugs.tex +0 -0
  775. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/collectinput.py +0 -0
  776. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/commands.tex +0 -0
  777. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/default.css +0 -0
  778. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/docutils.conf +0 -0
  779. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/arr.f +0 -0
  780. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/bar.f +0 -0
  781. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foo.f +0 -0
  782. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar-smart.f90 +0 -0
  783. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobar.f90 +0 -0
  784. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/foobarmodule.tex +0 -0
  785. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/ex1/runme +0 -0
  786. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py.1 +0 -0
  787. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2py2e.tex +0 -0
  788. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/README.txt +0 -0
  789. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/aerostructure.jpg +0 -0
  790. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/flow.jpg +0 -0
  791. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_html.sh +0 -0
  792. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_pdf.sh +0 -0
  793. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/mk_ps.sh +0 -0
  794. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1.f +0 -0
  795. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1mess.txt +0 -0
  796. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/exp1session.txt +0 -0
  797. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foo.pyf +0 -0
  798. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/src/examples/foom.pyf +0 -0
  799. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/f2python9-final/structure.jpg +0 -0
  800. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/fortranobject.tex +0 -0
  801. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/hello.f +0 -0
  802. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/index.html +0 -0
  803. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/intro.tex +0 -0
  804. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/array_from_pyobj.c +0 -0
  805. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/bar.c +0 -0
  806. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/foo.f +0 -0
  807. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fortran_array_from_pyobj.txt +0 -0
  808. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/fun.pyf +0 -0
  809. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/run.pyf +0 -0
  810. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarray/transpose.txt +0 -0
  811. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/multiarrays.txt +0 -0
  812. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/notes.tex +0 -0
  813. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/oldnews.html +0 -0
  814. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/options.tex +0 -0
  815. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pyforttest.pyf +0 -0
  816. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/pytest.py +0 -0
  817. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/python9.tex +0 -0
  818. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/signaturefile.tex +0 -0
  819. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple.f +0 -0
  820. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/simple_session.dat +0 -0
  821. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/using_F_compiler.txt +0 -0
  822. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/f2py/win32_notes.txt +0 -0
  823. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/postprocess.py +0 -0
  824. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.3.0-notes.rst +0 -0
  825. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.4.0-notes.rst +0 -0
  826. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.5.0-notes.rst +0 -0
  827. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.0-notes.rst +0 -0
  828. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.1-notes.rst +0 -0
  829. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.6.2-notes.rst +0 -0
  830. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.0-notes.rst +0 -0
  831. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.1-notes.rst +0 -0
  832. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.7.2-notes.rst +0 -0
  833. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.0-notes.rst +0 -0
  834. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.1-notes.rst +0 -0
  835. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.8.2-notes.rst +0 -0
  836. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.0-notes.rst +0 -0
  837. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.1-notes.rst +0 -0
  838. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/1.9.2-notes.rst +0 -0
  839. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/release/time_based_proposal.rst +0 -0
  840. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.git +0 -0
  841. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/.gitignore +0 -0
  842. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/Makefile +0 -0
  843. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/README.rst +0 -0
  844. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_static/scipyshiny_small.png +0 -0
  845. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/layout.html +0 -0
  846. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/searchbox.html +0 -0
  847. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/sourcelink.html +0 -0
  848. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/extend.css +0 -0
  849. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/pygments.css +0 -0
  850. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/scipy-central.css +0 -0
  851. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-bootstrap.css +0 -0
  852. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/css/spc-extend.css +0 -0
  853. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/all-icons.svg +0 -0
  854. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/contents.png +0 -0
  855. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/create-new-account-icon.png +0 -0
  856. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon-shrunk.png +0 -0
  857. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.png +0 -0
  858. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-icon.svg +0 -0
  859. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiniest.png +0 -0
  860. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon-tiny.png +0 -0
  861. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/external-link-list-icon.png +0 -0
  862. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ad.png +0 -0
  863. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ae.png +0 -0
  864. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-af.png +0 -0
  865. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ag.png +0 -0
  866. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ai.png +0 -0
  867. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-al.png +0 -0
  868. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-am.png +0 -0
  869. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ao.png +0 -0
  870. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aq.png +0 -0
  871. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ar.png +0 -0
  872. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-as.png +0 -0
  873. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-at.png +0 -0
  874. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-au.png +0 -0
  875. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-aw.png +0 -0
  876. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-az.png +0 -0
  877. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ba.png +0 -0
  878. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bb.png +0 -0
  879. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bd.png +0 -0
  880. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-be.png +0 -0
  881. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bf.png +0 -0
  882. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bg.png +0 -0
  883. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bh.png +0 -0
  884. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bi.png +0 -0
  885. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bj.png +0 -0
  886. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bl.png +0 -0
  887. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bm.png +0 -0
  888. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bn.png +0 -0
  889. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bo.png +0 -0
  890. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-br.png +0 -0
  891. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bs.png +0 -0
  892. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bt.png +0 -0
  893. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bw.png +0 -0
  894. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-by.png +0 -0
  895. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-bz.png +0 -0
  896. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ca.png +0 -0
  897. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cc.png +0 -0
  898. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cd.png +0 -0
  899. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cf.png +0 -0
  900. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cg.png +0 -0
  901. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ch.png +0 -0
  902. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ci.png +0 -0
  903. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ck.png +0 -0
  904. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cl.png +0 -0
  905. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cm.png +0 -0
  906. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cn.png +0 -0
  907. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-co.png +0 -0
  908. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cr.png +0 -0
  909. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cu.png +0 -0
  910. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cv.png +0 -0
  911. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cw.png +0 -0
  912. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cx.png +0 -0
  913. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cy.png +0 -0
  914. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-cz.png +0 -0
  915. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-de.png +0 -0
  916. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dj.png +0 -0
  917. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dk.png +0 -0
  918. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dm.png +0 -0
  919. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-do.png +0 -0
  920. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-dz.png +0 -0
  921. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ec.png +0 -0
  922. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ee.png +0 -0
  923. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-eg.png +0 -0
  924. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-er.png +0 -0
  925. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-es.png +0 -0
  926. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-et.png +0 -0
  927. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fi.png +0 -0
  928. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fj.png +0 -0
  929. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fk.png +0 -0
  930. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fm.png +0 -0
  931. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fo.png +0 -0
  932. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-fr.png +0 -0
  933. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ga.png +0 -0
  934. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gb.png +0 -0
  935. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gd.png +0 -0
  936. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ge.png +0 -0
  937. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gf.png +0 -0
  938. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gg.png +0 -0
  939. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gh.png +0 -0
  940. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gi.png +0 -0
  941. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gl.png +0 -0
  942. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gm.png +0 -0
  943. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gn.png +0 -0
  944. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gq.png +0 -0
  945. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gr.png +0 -0
  946. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gs.png +0 -0
  947. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gt.png +0 -0
  948. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gu.png +0 -0
  949. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gw.png +0 -0
  950. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-gy.png +0 -0
  951. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hk.png +0 -0
  952. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hm.png +0 -0
  953. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hn.png +0 -0
  954. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hr.png +0 -0
  955. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ht.png +0 -0
  956. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-hu.png +0 -0
  957. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-id.png +0 -0
  958. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ie.png +0 -0
  959. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-il.png +0 -0
  960. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-im.png +0 -0
  961. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-in.png +0 -0
  962. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-io.png +0 -0
  963. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-iq.png +0 -0
  964. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ir.png +0 -0
  965. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-is.png +0 -0
  966. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-it.png +0 -0
  967. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-je.png +0 -0
  968. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jm.png +0 -0
  969. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jo.png +0 -0
  970. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-jp.png +0 -0
  971. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ke.png +0 -0
  972. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kg.png +0 -0
  973. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kh.png +0 -0
  974. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ki.png +0 -0
  975. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-km.png +0 -0
  976. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kn.png +0 -0
  977. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kp.png +0 -0
  978. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kr.png +0 -0
  979. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kw.png +0 -0
  980. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ky.png +0 -0
  981. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-kz.png +0 -0
  982. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-la.png +0 -0
  983. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lb.png +0 -0
  984. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lc.png +0 -0
  985. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-li.png +0 -0
  986. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lk.png +0 -0
  987. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lr.png +0 -0
  988. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ls.png +0 -0
  989. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lt.png +0 -0
  990. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lu.png +0 -0
  991. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-lv.png +0 -0
  992. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ly.png +0 -0
  993. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ma.png +0 -0
  994. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mc.png +0 -0
  995. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-md.png +0 -0
  996. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-me.png +0 -0
  997. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mf.png +0 -0
  998. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mg.png +0 -0
  999. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mh.png +0 -0
  1000. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mk.png +0 -0
  1001. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ml.png +0 -0
  1002. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mm.png +0 -0
  1003. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mn.png +0 -0
  1004. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mo.png +0 -0
  1005. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mp.png +0 -0
  1006. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mq.png +0 -0
  1007. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mr.png +0 -0
  1008. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ms.png +0 -0
  1009. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mt.png +0 -0
  1010. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mu.png +0 -0
  1011. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mv.png +0 -0
  1012. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mw.png +0 -0
  1013. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mx.png +0 -0
  1014. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-my.png +0 -0
  1015. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-mz.png +0 -0
  1016. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-na.png +0 -0
  1017. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nc.png +0 -0
  1018. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ne.png +0 -0
  1019. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nf.png +0 -0
  1020. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ng.png +0 -0
  1021. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ni.png +0 -0
  1022. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nl.png +0 -0
  1023. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-no.png +0 -0
  1024. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-np.png +0 -0
  1025. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nr.png +0 -0
  1026. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nu.png +0 -0
  1027. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-nz.png +0 -0
  1028. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-om.png +0 -0
  1029. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pa.png +0 -0
  1030. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pe.png +0 -0
  1031. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pf.png +0 -0
  1032. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pg.png +0 -0
  1033. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ph.png +0 -0
  1034. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pk.png +0 -0
  1035. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pl.png +0 -0
  1036. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pm.png +0 -0
  1037. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pn.png +0 -0
  1038. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pr.png +0 -0
  1039. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ps.png +0 -0
  1040. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pt.png +0 -0
  1041. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-pw.png +0 -0
  1042. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-py.png +0 -0
  1043. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-qa.png +0 -0
  1044. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-re.png +0 -0
  1045. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ro.png +0 -0
  1046. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rs.png +0 -0
  1047. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ru.png +0 -0
  1048. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-rw.png +0 -0
  1049. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sa.png +0 -0
  1050. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sb.png +0 -0
  1051. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sc.png +0 -0
  1052. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sd.png +0 -0
  1053. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-se.png +0 -0
  1054. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sg.png +0 -0
  1055. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sh.png +0 -0
  1056. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-si.png +0 -0
  1057. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sj.png +0 -0
  1058. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sk.png +0 -0
  1059. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sl.png +0 -0
  1060. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sm.png +0 -0
  1061. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sn.png +0 -0
  1062. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-so.png +0 -0
  1063. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sr.png +0 -0
  1064. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-st.png +0 -0
  1065. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sv.png +0 -0
  1066. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sy.png +0 -0
  1067. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-sz.png +0 -0
  1068. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tc.png +0 -0
  1069. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-td.png +0 -0
  1070. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tf.png +0 -0
  1071. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tg.png +0 -0
  1072. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-th.png +0 -0
  1073. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tj.png +0 -0
  1074. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tk.png +0 -0
  1075. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tl.png +0 -0
  1076. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tm.png +0 -0
  1077. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tn.png +0 -0
  1078. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-to.png +0 -0
  1079. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tr.png +0 -0
  1080. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tt.png +0 -0
  1081. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tv.png +0 -0
  1082. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tw.png +0 -0
  1083. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-tz.png +0 -0
  1084. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ua.png +0 -0
  1085. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ug.png +0 -0
  1086. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-um.png +0 -0
  1087. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-us.png +0 -0
  1088. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uy.png +0 -0
  1089. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-uz.png +0 -0
  1090. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-va.png +0 -0
  1091. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vc.png +0 -0
  1092. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ve.png +0 -0
  1093. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vg.png +0 -0
  1094. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vi.png +0 -0
  1095. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vn.png +0 -0
  1096. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-vu.png +0 -0
  1097. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-wf.png +0 -0
  1098. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ws.png +0 -0
  1099. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-ye.png +0 -0
  1100. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-za.png +0 -0
  1101. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zm.png +0 -0
  1102. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/flags/flag-zw.png +0 -0
  1103. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings-white.png +0 -0
  1104. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/glyphicons-halflings.png +0 -0
  1105. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/important-icon.png +0 -0
  1106. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/information-icon.png +0 -0
  1107. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/internet-web-browser.png +0 -0
  1108. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon-shrunk.png +0 -0
  1109. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.png +0 -0
  1110. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-icon.svg +0 -0
  1111. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon-tiny.png +0 -0
  1112. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/multiple-file-list-icon.png +0 -0
  1113. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/navigation.png +0 -0
  1114. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon-tiny.png +0 -0
  1115. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/person-list-icon.png +0 -0
  1116. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy-logo.png +0 -0
  1117. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipy_org_logo.gif +0 -0
  1118. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipycentral_logo.png +0 -0
  1119. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/scipyshiny_small.png +0 -0
  1120. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/send-email-icon.png +0 -0
  1121. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon-shrunk.png +0 -0
  1122. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.png +0 -0
  1123. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-icon.svg +0 -0
  1124. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiniest.png +0 -0
  1125. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon-tiny.png +0 -0
  1126. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/single-file-list-icon.png +0 -0
  1127. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/transparent-pixel.gif +0 -0
  1128. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/img/ui-anim_basic_16x16.gif +0 -0
  1129. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/js/copybutton.js +0 -0
  1130. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/accordion.less +0 -0
  1131. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/alerts.less +0 -0
  1132. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/bootstrap.less +0 -0
  1133. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/breadcrumbs.less +0 -0
  1134. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/button-groups.less +0 -0
  1135. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/buttons.less +0 -0
  1136. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/carousel.less +0 -0
  1137. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/close.less +0 -0
  1138. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/code.less +0 -0
  1139. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/component-animations.less +0 -0
  1140. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/dropdowns.less +0 -0
  1141. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/forms.less +0 -0
  1142. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/grid.less +0 -0
  1143. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/hero-unit.less +0 -0
  1144. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/labels-badges.less +0 -0
  1145. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/layouts.less +0 -0
  1146. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/media.less +0 -0
  1147. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/mixins.less +0 -0
  1148. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/modals.less +0 -0
  1149. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navbar.less +0 -0
  1150. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/navs.less +0 -0
  1151. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pager.less +0 -0
  1152. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/pagination.less +0 -0
  1153. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/popovers.less +0 -0
  1154. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/progress-bars.less +0 -0
  1155. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/reset.less +0 -0
  1156. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-1200px-min.less +0 -0
  1157. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-767px-max.less +0 -0
  1158. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-768px-979px.less +0 -0
  1159. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-navbar.less +0 -0
  1160. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive-utilities.less +0 -0
  1161. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/responsive.less +0 -0
  1162. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/scaffolding.less +0 -0
  1163. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/sprites.less +0 -0
  1164. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tables.less +0 -0
  1165. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/thumbnails.less +0 -0
  1166. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/tooltip.less +0 -0
  1167. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/type.less +0 -0
  1168. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/utilities.less +0 -0
  1169. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/variables.less +0 -0
  1170. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/bootstrap/wells.less +0 -0
  1171. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-bootstrap.less +0 -0
  1172. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-content.less +0 -0
  1173. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-extend.less +0 -0
  1174. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-footer.less +0 -0
  1175. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-header.less +0 -0
  1176. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-rightsidebar.less +0 -0
  1177. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/less/spc-utils.less +0 -0
  1178. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/static/scipy.css_t +0 -0
  1179. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/_theme/scipy/theme.conf +0 -0
  1180. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/conf.py +0 -0
  1181. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/index.rst +0 -0
  1182. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc.rst +0 -0
  1183. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_2.rst +0 -0
  1184. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_3.rst +0 -0
  1185. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_autodoc_4.rst +0 -0
  1186. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/scipy-sphinx-theme/test_optimize.rst +0 -0
  1187. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/autosummary/class.rst +0 -0
  1188. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexcontent.html +0 -0
  1189. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/indexsidebar.html +0 -0
  1190. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/_templates/layout.html +0 -0
  1191. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/about.rst +0 -0
  1192. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/bugs.rst +0 -0
  1193. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/contents.rst +0 -0
  1194. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/configure_git.rst +0 -0
  1195. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/development_setup.rst +0 -0
  1196. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/dot2_dot3.rst +0 -0
  1197. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/following_latest.rst +0 -0
  1198. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/forking_button.png +0 -0
  1199. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_development.rst +0 -0
  1200. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_intro.rst +0 -0
  1201. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/git_resources.rst +0 -0
  1202. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash/pull_button.png +0 -0
  1203. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/dev/gitwash_links.txt +0 -0
  1204. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/advanced.rst +0 -0
  1205. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr.f90 +0 -0
  1206. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/allocarr_session.dat +0 -0
  1207. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array.f +0 -0
  1208. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/array_session.dat +0 -0
  1209. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate.f +0 -0
  1210. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/calculate_session.dat +0 -0
  1211. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback.f +0 -0
  1212. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback2.pyf +0 -0
  1213. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/callback_session.dat +0 -0
  1214. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common.f +0 -0
  1215. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/common_session.dat +0 -0
  1216. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/compile_session.dat +0 -0
  1217. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/distutils.rst +0 -0
  1218. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback.f +0 -0
  1219. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/extcallback_session.dat +0 -0
  1220. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.f +0 -0
  1221. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib1.pyf +0 -0
  1222. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib2.pyf +0 -0
  1223. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/fib3.f +0 -0
  1224. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype.f +0 -0
  1225. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/ftype_session.dat +0 -0
  1226. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/getting-started.rst +0 -0
  1227. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/index.rst +0 -0
  1228. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata.f90 +0 -0
  1229. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/moddata_session.dat +0 -0
  1230. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/python-usage.rst +0 -0
  1231. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/run_main_session.dat +0 -0
  1232. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar.f +0 -0
  1233. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/scalar_session.dat +0 -0
  1234. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/setup_example.py +0 -0
  1235. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/signature-file.rst +0 -0
  1236. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam.pyf +0 -0
  1237. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/spam_session.dat +0 -0
  1238. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string.f +0 -0
  1239. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/string_session.dat +0 -0
  1240. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/usage.rst +0 -0
  1241. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var.pyf +0 -0
  1242. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/f2py/var_session.dat +0 -0
  1243. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/glossary.rst +0 -0
  1244. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/license.rst +0 -0
  1245. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal.rst +0 -0
  1246. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/datetime-proposal3.rst +0 -0
  1247. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/deferred-ufunc-evaluation.rst +0 -0
  1248. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/generalized-ufuncs.rst +0 -0
  1249. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/groupby_additions.rst +0 -0
  1250. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/index.rst +0 -0
  1251. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/math_config_clean.rst +0 -0
  1252. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/missing-data.rst +0 -0
  1253. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/new-iterator-ufunc.rst +0 -0
  1254. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/newbugtracker.rst +0 -0
  1255. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/npy-format.rst +0 -0
  1256. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/structured_array_extensions.rst +0 -0
  1257. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/ufunc-overrides.rst +0 -0
  1258. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/neps/warnfix.rst +0 -0
  1259. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.datetime.rst +0 -0
  1260. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.nditer.rst +0 -0
  1261. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/arrays.rst +0 -0
  1262. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.deprecations.rst +0 -0
  1263. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/c-api.rst +0 -0
  1264. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/distutils.rst +0 -0
  1265. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.dia +0 -0
  1266. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.pdf +0 -0
  1267. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/dtype-hierarchy.png +0 -0
  1268. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.fig +0 -0
  1269. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.pdf +0 -0
  1270. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/figures/threefundamental.png +0 -0
  1271. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/internals.rst +0 -0
  1272. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.baseclass.rst +0 -0
  1273. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.generic.rst +0 -0
  1274. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/maskedarray.rst +0 -0
  1275. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.array-creation.rst +0 -0
  1276. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.bitwise.rst +0 -0
  1277. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.char.rst +0 -0
  1278. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.ctypeslib.rst +0 -0
  1279. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.datetime.rst +0 -0
  1280. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dtype.rst +0 -0
  1281. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.dual.rst +0 -0
  1282. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.emath.rst +0 -0
  1283. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.err.rst +0 -0
  1284. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.fft.rst +0 -0
  1285. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.financial.rst +0 -0
  1286. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.functional.rst +0 -0
  1287. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.help.rst +0 -0
  1288. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.indexing.rst +0 -0
  1289. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.logic.rst +0 -0
  1290. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.math.rst +0 -0
  1291. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.matlib.rst +0 -0
  1292. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.numarray.rst +0 -0
  1293. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.oldnumeric.rst +0 -0
  1294. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.other.rst +0 -0
  1295. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.padding.rst +0 -0
  1296. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.chebyshev.rst +0 -0
  1297. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.classes.rst +0 -0
  1298. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite.rst +0 -0
  1299. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.hermite_e.rst +0 -0
  1300. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.laguerre.rst +0 -0
  1301. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.legendre.rst +0 -0
  1302. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.package.rst +0 -0
  1303. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.poly1d.rst +0 -0
  1304. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.polynomial.rst +0 -0
  1305. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.polynomials.rst +0 -0
  1306. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.random.rst +0 -0
  1307. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.rst +0 -0
  1308. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.set.rst +0 -0
  1309. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.testing.rst +0 -0
  1310. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/routines.window.rst +0 -0
  1311. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/reference/swig.rst +0 -0
  1312. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.broadcasting.rst +0 -0
  1313. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.byteswapping.rst +0 -0
  1314. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.creation.rst +0 -0
  1315. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.indexing.rst +0 -0
  1316. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.io.rst +0 -0
  1317. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.rst +0 -0
  1318. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.subclassing.rst +0 -0
  1319. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/basics.types.rst +0 -0
  1320. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/c-info.rst +0 -0
  1321. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/howtofind.rst +0 -0
  1322. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/index.rst +0 -0
  1323. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/introduction.rst +0 -0
  1324. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/misc.rst +0 -0
  1325. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/performance.rst +0 -0
  1326. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/source/user/whatisnumpy.rst +0 -0
  1327. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.git +0 -0
  1328. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.gitignore +0 -0
  1329. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/.travis.yml +0 -0
  1330. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/LICENSE.txt +0 -0
  1331. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/MANIFEST.in +0 -0
  1332. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/README.rst +0 -0
  1333. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/__init__.py +0 -0
  1334. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/comment_eater.py +0 -0
  1335. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/compiler_unparse.py +0 -0
  1336. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape.py +0 -0
  1337. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/docscrape_sphinx.py +0 -0
  1338. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/linkcode.py +0 -0
  1339. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/numpydoc.py +0 -0
  1340. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/phantom_import.py +0 -0
  1341. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/plot_directive.py +0 -0
  1342. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_docscrape.py +0 -0
  1343. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_linkcode.py +0 -0
  1344. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_phantom_import.py +0 -0
  1345. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_plot_directive.py +0 -0
  1346. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/tests/test_traitsdoc.py +0 -0
  1347. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/numpydoc/traitsdoc.py +0 -0
  1348. {numpy-1.9.3 → numpy-1.10.0.post2}/doc/sphinxext/setup.py +0 -0
  1349. {numpy-1.9.3/numpy/core/code_generators → numpy-1.10.0.post2/numpy/_build_utils}/__init__.py +0 -0
  1350. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/compat/__init__.py +0 -0
  1351. {numpy-1.9.3/numpy/distutils/tests/f2py_ext → numpy-1.10.0.post2/numpy/core/code_generators}/__init__.py +0 -0
  1352. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/genapi.py +0 -0
  1353. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/code_generators/generate_numpy_api.py +0 -0
  1354. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/cversions.py +0 -0
  1355. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_neighborhood_iterator_imp.h +0 -0
  1356. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/_numpyconfig.h.in +0 -0
  1357. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayobject.h +0 -0
  1358. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/arrayscalars.h +0 -0
  1359. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/halffloat.h +0 -0
  1360. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/noprefix.h +0 -0
  1361. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_1_7_deprecated_api.h +0 -0
  1362. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_interrupt.h +0 -0
  1363. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_no_deprecated_api.h +0 -0
  1364. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/npy_os.h +0 -0
  1365. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/old_defines.h +0 -0
  1366. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/oldnumeric.h +0 -0
  1367. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/ufuncobject.h +0 -0
  1368. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/include/numpy/utils.h +0 -0
  1369. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/info.py +0 -0
  1370. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/mlib.ini.in +0 -0
  1371. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/npymath.ini.in +0 -0
  1372. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/dummymodule.c +0 -0
  1373. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/_datetime.h +0 -0
  1374. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/alloc.h +0 -0
  1375. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.c +0 -0
  1376. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign.h +0 -0
  1377. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_array.c +0 -0
  1378. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/array_assign_scalar.c +0 -0
  1379. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/arrayobject.h +0 -0
  1380. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/buffer.h +0 -0
  1381. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/calculation.h +0 -0
  1382. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/conversion_utils.h +0 -0
  1383. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert.h +0 -0
  1384. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/convert_datatype.h +0 -0
  1385. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ctors.h +0 -0
  1386. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busday.h +0 -0
  1387. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_busdaycal.h +0 -0
  1388. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/datetime_strings.h +0 -0
  1389. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/descriptor.h +0 -0
  1390. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/flagsobject.c +0 -0
  1391. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/getset.h +0 -0
  1392. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/hashdescr.h +0 -0
  1393. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/item_selection.h +0 -0
  1394. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/iterators.h +0 -0
  1395. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/methods.h +0 -0
  1396. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_impl.h +0 -0
  1397. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_pywrap.h +0 -0
  1398. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/nditer_templ.c.src +0 -0
  1399. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpymemoryview.h +0 -0
  1400. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/numpyos.h +0 -0
  1401. {numpy-1.9.3/numpy/core/blasdot → numpy-1.10.0.post2/numpy/core/src/multiarray}/python_xerbla.c +0 -0
  1402. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.c +0 -0
  1403. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/refcount.h +0 -0
  1404. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.c +0 -0
  1405. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/sequence.h +0 -0
  1406. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/shape.h +0 -0
  1407. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/ucsnarrow.h +0 -0
  1408. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.c +0 -0
  1409. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/multiarray/usertypes.h +0 -0
  1410. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/_signbit.c +0 -0
  1411. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/halffloat.c +0 -0
  1412. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npymath/npy_math_common.h +0 -0
  1413. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/npysort/binsearch.c.src +0 -0
  1414. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/lowlevel_strided_loops.h +0 -0
  1415. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_binsearch.h.src +0 -0
  1416. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_fpmath.h +0 -0
  1417. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/private/npy_pycompat.h +0 -0
  1418. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.c +0 -0
  1419. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/reduction.h +0 -0
  1420. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/struct_ufunc_test.c.src +0 -0
  1421. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_object.h +0 -0
  1422. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/src/umath/ufunc_type_resolution.h +0 -0
  1423. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/astype_copy.pkl +0 -0
  1424. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/data/recarray_from_file.fits +0 -0
  1425. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/core/tests/test_scalarprint.py +0 -0
  1426. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ctypeslib.py +0 -0
  1427. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/__version__.py +0 -0
  1428. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/__init__.py +0 -0
  1429. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/bdist_rpm.py +0 -0
  1430. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_py.py +0 -0
  1431. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_scripts.py +0 -0
  1432. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/build_src.py +0 -0
  1433. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/config_compiler.py +0 -0
  1434. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/develop.py +0 -0
  1435. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/egg_info.py +0 -0
  1436. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install.py +0 -0
  1437. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_clib.py +0 -0
  1438. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_data.py +0 -0
  1439. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/install_headers.py +0 -0
  1440. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/command/sdist.py +0 -0
  1441. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/compat.py +0 -0
  1442. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/conv_template.py +0 -0
  1443. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/core.py +0 -0
  1444. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/cpuinfo.py +0 -0
  1445. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/environment.py +0 -0
  1446. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/extension.py +0 -0
  1447. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/__init__.py +0 -0
  1448. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/absoft.py +0 -0
  1449. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/g95.py +0 -0
  1450. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/hpux.py +0 -0
  1451. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/ibm.py +0 -0
  1452. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/lahey.py +0 -0
  1453. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/mips.py +0 -0
  1454. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/nag.py +0 -0
  1455. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/none.py +0 -0
  1456. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/pathf95.py +0 -0
  1457. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/fcompiler/vast.py +0 -0
  1458. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/from_template.py +0 -0
  1459. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/info.py +0 -0
  1460. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/line_endings.py +0 -0
  1461. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/log.py +0 -0
  1462. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/mingw/gfortran_vs2003_hack.c +0 -0
  1463. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/numpy_distribution.py +0 -0
  1464. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/pathccompiler.py +0 -0
  1465. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/setup.py +0 -0
  1466. {numpy-1.9.3/numpy/distutils/tests/f2py_f90_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_ext}/__init__.py +0 -0
  1467. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/setup.py +0 -0
  1468. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib1.f +0 -0
  1469. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_ext/src/fib2.pyf +0 -0
  1470. {numpy-1.9.3/numpy/distutils/tests/gen_ext → numpy-1.10.0.post2/numpy/distutils/tests/f2py_f90_ext}/__init__.py +0 -0
  1471. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/include/body.f90 +0 -0
  1472. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/setup.py +0 -0
  1473. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/f2py_f90_ext/src/foo_free.f90 +0 -0
  1474. {numpy-1.9.3/numpy/distutils/tests/pyrex_ext → numpy-1.10.0.post2/numpy/distutils/tests/gen_ext}/__init__.py +0 -0
  1475. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/gen_ext/setup.py +0 -0
  1476. {numpy-1.9.3/numpy/distutils/tests/swig_ext → numpy-1.10.0.post2/numpy/distutils/tests/pyrex_ext}/__init__.py +0 -0
  1477. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/primes.pyx +0 -0
  1478. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/pyrex_ext/setup.py +0 -0
  1479. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/setup.py +0 -0
  1480. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/setup.py +0 -0
  1481. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.c +0 -0
  1482. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/example.i +0 -0
  1483. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.cc +0 -0
  1484. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.h +0 -0
  1485. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/swig_ext/src/zoo.i +0 -0
  1486. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/distutils/tests/test_exec_command.py +0 -0
  1487. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/__init__.py +0 -0
  1488. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/basics.py +0 -0
  1489. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/broadcasting.py +0 -0
  1490. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/constants.py +0 -0
  1491. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/howtofind.py +0 -0
  1492. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/internals.py +0 -0
  1493. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/io.py +0 -0
  1494. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/jargon.py +0 -0
  1495. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/methods_vs_functions.py +0 -0
  1496. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/misc.py +0 -0
  1497. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/performance.py +0 -0
  1498. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/subclassing.py +0 -0
  1499. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/doc/ufuncs.py +0 -0
  1500. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/dual.py +0 -0
  1501. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/__version__.py +0 -0
  1502. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/info.py +0 -0
  1503. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +0 -0
  1504. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_free.f90 +0 -0
  1505. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +0 -0
  1506. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/foo_use.f90 +0 -0
  1507. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/assumed_shape/precision.f90 +0 -0
  1508. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/kind/foo.f90 +0 -0
  1509. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo.f +0 -0
  1510. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_fixed.f90 +0 -0
  1511. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/mixed/foo_free.f90 +0 -0
  1512. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/regression/inout.f90 +0 -0
  1513. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/f2py/tests/src/size/foo.f90 +0 -0
  1514. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/__init__.py +0 -0
  1515. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/fft/helper.py +0 -0
  1516. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/__init__.py +0 -0
  1517. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_datasource.py +0 -0
  1518. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/_version.py +0 -0
  1519. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/scimath.py +0 -0
  1520. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/python3.npy +0 -0
  1521. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/data/win64python2.npy +0 -0
  1522. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test__datasource.py +0 -0
  1523. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_arrayterator.py +0 -0
  1524. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_regression.py +0 -0
  1525. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_ufunclike.py +0 -0
  1526. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/tests/test_utils.py +0 -0
  1527. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/ufunclike.py +0 -0
  1528. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/lib/user_array.py +0 -0
  1529. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/__init__.py +0 -0
  1530. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/info.py +0 -0
  1531. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/blas_lite.c +0 -0
  1532. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlamch.c +0 -0
  1533. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/dlapack_lite.c +0 -0
  1534. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c.h +0 -0
  1535. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/f2c_lite.c +0 -0
  1536. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/lapack_lite/zlapack_lite.c +0 -0
  1537. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/setup.py +0 -0
  1538. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/linalg/tests/test_deprecations.py +0 -0
  1539. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/ma/version.py +0 -0
  1540. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/__init__.py +0 -0
  1541. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/matrixlib/setup.py +0 -0
  1542. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/__init__.py +0 -0
  1543. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/polynomial.py +0 -0
  1544. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/setup.py +0 -0
  1545. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_chebyshev.py +0 -0
  1546. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_classes.py +0 -0
  1547. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite.py +0 -0
  1548. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_hermite_e.py +0 -0
  1549. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_laguerre.py +0 -0
  1550. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_legendre.py +0 -0
  1551. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polynomial.py +0 -0
  1552. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_polyutils.py +0 -0
  1553. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/polynomial/tests/test_printing.py +0 -0
  1554. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/__init__.py +0 -0
  1555. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/info.py +0 -0
  1556. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/Python.pxi +0 -0
  1557. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/distributions.h +0 -0
  1558. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/generate_mtrand_c.py +0 -0
  1559. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.c +0 -0
  1560. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/initarray.h +0 -0
  1561. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/mtrand_py_helper.h +0 -0
  1562. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/numpy.pxd +0 -0
  1563. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.c +0 -0
  1564. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/random/mtrand/randomkit.h +0 -0
  1565. {numpy-1.9.3 → numpy-1.10.0.post2}/numpy/testing/tests/test_doctesting.py +0 -0
  1566. {numpy-1.9.3 → numpy-1.10.0.post2}/setupegg.py +0 -0
  1567. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/Makefile +0 -0
  1568. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/pyfragments.swg +0 -0
  1569. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.cxx +0 -0
  1570. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array1.h +0 -0
  1571. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.cxx +0 -0
  1572. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Array2.h +0 -0
  1573. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.cxx +0 -0
  1574. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.h +0 -0
  1575. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Farray.i +0 -0
  1576. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.cxx +0 -0
  1577. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.h +0 -0
  1578. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Fortran.i +0 -0
  1579. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.cxx +0 -0
  1580. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.h +0 -0
  1581. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Matrix.i +0 -0
  1582. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.cxx +0 -0
  1583. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.h +0 -0
  1584. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/SuperTensor.i +0 -0
  1585. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.cxx +0 -0
  1586. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.h +0 -0
  1587. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Tensor.i +0 -0
  1588. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.cxx +0 -0
  1589. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.h +0 -0
  1590. {numpy-1.9.3 → numpy-1.10.0.post2}/tools/swig/test/Vector.i +0 -0
@@ -1,3419 +0,0 @@
1
- """
2
- Docstrings for generated ufuncs
3
-
4
- The syntax is designed to look like the function add_newdoc is being
5
- called from numpy.lib, but in this file add_newdoc puts the docstrings
6
- in a dictionary. This dictionary is used in
7
- numpy/core/code_generators/generate_umath.py to generate the docstrings
8
- for the ufuncs in numpy.core at the C level when the ufuncs are created
9
- at compile time.
10
-
11
- """
12
- from __future__ import division, absolute_import, print_function
13
-
14
- docdict = {}
15
-
16
- def get(name):
17
- return docdict.get(name)
18
-
19
- def add_newdoc(place, name, doc):
20
- docdict['.'.join((place, name))] = doc
21
-
22
-
23
- add_newdoc('numpy.core.umath', 'absolute',
24
- """
25
- Calculate the absolute value element-wise.
26
-
27
- Parameters
28
- ----------
29
- x : array_like
30
- Input array.
31
-
32
- Returns
33
- -------
34
- absolute : ndarray
35
- An ndarray containing the absolute value of
36
- each element in `x`. For complex input, ``a + ib``, the
37
- absolute value is :math:`\\sqrt{ a^2 + b^2 }`.
38
-
39
- Examples
40
- --------
41
- >>> x = np.array([-1.2, 1.2])
42
- >>> np.absolute(x)
43
- array([ 1.2, 1.2])
44
- >>> np.absolute(1.2 + 1j)
45
- 1.5620499351813308
46
-
47
- Plot the function over ``[-10, 10]``:
48
-
49
- >>> import matplotlib.pyplot as plt
50
-
51
- >>> x = np.linspace(start=-10, stop=10, num=101)
52
- >>> plt.plot(x, np.absolute(x))
53
- >>> plt.show()
54
-
55
- Plot the function over the complex plane:
56
-
57
- >>> xx = x + 1j * x[:, np.newaxis]
58
- >>> plt.imshow(np.abs(xx), extent=[-10, 10, -10, 10])
59
- >>> plt.show()
60
-
61
- """)
62
-
63
- add_newdoc('numpy.core.umath', 'add',
64
- """
65
- Add arguments element-wise.
66
-
67
- Parameters
68
- ----------
69
- x1, x2 : array_like
70
- The arrays to be added. If ``x1.shape != x2.shape``, they must be
71
- broadcastable to a common shape (which may be the shape of one or
72
- the other).
73
-
74
- Returns
75
- -------
76
- add : ndarray or scalar
77
- The sum of `x1` and `x2`, element-wise. Returns a scalar if
78
- both `x1` and `x2` are scalars.
79
-
80
- Notes
81
- -----
82
- Equivalent to `x1` + `x2` in terms of array broadcasting.
83
-
84
- Examples
85
- --------
86
- >>> np.add(1.0, 4.0)
87
- 5.0
88
- >>> x1 = np.arange(9.0).reshape((3, 3))
89
- >>> x2 = np.arange(3.0)
90
- >>> np.add(x1, x2)
91
- array([[ 0., 2., 4.],
92
- [ 3., 5., 7.],
93
- [ 6., 8., 10.]])
94
-
95
- """)
96
-
97
- add_newdoc('numpy.core.umath', 'arccos',
98
- """
99
- Trigonometric inverse cosine, element-wise.
100
-
101
- The inverse of `cos` so that, if ``y = cos(x)``, then ``x = arccos(y)``.
102
-
103
- Parameters
104
- ----------
105
- x : array_like
106
- `x`-coordinate on the unit circle.
107
- For real arguments, the domain is [-1, 1].
108
-
109
- out : ndarray, optional
110
- Array of the same shape as `a`, to store results in. See
111
- `doc.ufuncs` (Section "Output arguments") for more details.
112
-
113
- Returns
114
- -------
115
- angle : ndarray
116
- The angle of the ray intersecting the unit circle at the given
117
- `x`-coordinate in radians [0, pi]. If `x` is a scalar then a
118
- scalar is returned, otherwise an array of the same shape as `x`
119
- is returned.
120
-
121
- See Also
122
- --------
123
- cos, arctan, arcsin, emath.arccos
124
-
125
- Notes
126
- -----
127
- `arccos` is a multivalued function: for each `x` there are infinitely
128
- many numbers `z` such that `cos(z) = x`. The convention is to return
129
- the angle `z` whose real part lies in `[0, pi]`.
130
-
131
- For real-valued input data types, `arccos` always returns real output.
132
- For each value that cannot be expressed as a real number or infinity,
133
- it yields ``nan`` and sets the `invalid` floating point error flag.
134
-
135
- For complex-valued input, `arccos` is a complex analytic function that
136
- has branch cuts `[-inf, -1]` and `[1, inf]` and is continuous from
137
- above on the former and from below on the latter.
138
-
139
- The inverse `cos` is also known as `acos` or cos^-1.
140
-
141
- References
142
- ----------
143
- M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
144
- 10th printing, 1964, pp. 79. http://www.math.sfu.ca/~cbm/aands/
145
-
146
- Examples
147
- --------
148
- We expect the arccos of 1 to be 0, and of -1 to be pi:
149
-
150
- >>> np.arccos([1, -1])
151
- array([ 0. , 3.14159265])
152
-
153
- Plot arccos:
154
-
155
- >>> import matplotlib.pyplot as plt
156
- >>> x = np.linspace(-1, 1, num=100)
157
- >>> plt.plot(x, np.arccos(x))
158
- >>> plt.axis('tight')
159
- >>> plt.show()
160
-
161
- """)
162
-
163
- add_newdoc('numpy.core.umath', 'arccosh',
164
- """
165
- Inverse hyperbolic cosine, element-wise.
166
-
167
- Parameters
168
- ----------
169
- x : array_like
170
- Input array.
171
- out : ndarray, optional
172
- Array of the same shape as `x`, to store results in.
173
- See `doc.ufuncs` (Section "Output arguments") for details.
174
-
175
-
176
- Returns
177
- -------
178
- arccosh : ndarray
179
- Array of the same shape as `x`.
180
-
181
- See Also
182
- --------
183
-
184
- cosh, arcsinh, sinh, arctanh, tanh
185
-
186
- Notes
187
- -----
188
- `arccosh` is a multivalued function: for each `x` there are infinitely
189
- many numbers `z` such that `cosh(z) = x`. The convention is to return the
190
- `z` whose imaginary part lies in `[-pi, pi]` and the real part in
191
- ``[0, inf]``.
192
-
193
- For real-valued input data types, `arccosh` always returns real output.
194
- For each value that cannot be expressed as a real number or infinity, it
195
- yields ``nan`` and sets the `invalid` floating point error flag.
196
-
197
- For complex-valued input, `arccosh` is a complex analytical function that
198
- has a branch cut `[-inf, 1]` and is continuous from above on it.
199
-
200
- References
201
- ----------
202
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
203
- 10th printing, 1964, pp. 86. http://www.math.sfu.ca/~cbm/aands/
204
- .. [2] Wikipedia, "Inverse hyperbolic function",
205
- http://en.wikipedia.org/wiki/Arccosh
206
-
207
- Examples
208
- --------
209
- >>> np.arccosh([np.e, 10.0])
210
- array([ 1.65745445, 2.99322285])
211
- >>> np.arccosh(1)
212
- 0.0
213
-
214
- """)
215
-
216
- add_newdoc('numpy.core.umath', 'arcsin',
217
- """
218
- Inverse sine, element-wise.
219
-
220
- Parameters
221
- ----------
222
- x : array_like
223
- `y`-coordinate on the unit circle.
224
-
225
- out : ndarray, optional
226
- Array of the same shape as `x`, in which to store the results.
227
- See `doc.ufuncs` (Section "Output arguments") for more details.
228
-
229
- Returns
230
- -------
231
- angle : ndarray
232
- The inverse sine of each element in `x`, in radians and in the
233
- closed interval ``[-pi/2, pi/2]``. If `x` is a scalar, a scalar
234
- is returned, otherwise an array.
235
-
236
- See Also
237
- --------
238
- sin, cos, arccos, tan, arctan, arctan2, emath.arcsin
239
-
240
- Notes
241
- -----
242
- `arcsin` is a multivalued function: for each `x` there are infinitely
243
- many numbers `z` such that :math:`sin(z) = x`. The convention is to
244
- return the angle `z` whose real part lies in [-pi/2, pi/2].
245
-
246
- For real-valued input data types, *arcsin* always returns real output.
247
- For each value that cannot be expressed as a real number or infinity,
248
- it yields ``nan`` and sets the `invalid` floating point error flag.
249
-
250
- For complex-valued input, `arcsin` is a complex analytic function that
251
- has, by convention, the branch cuts [-inf, -1] and [1, inf] and is
252
- continuous from above on the former and from below on the latter.
253
-
254
- The inverse sine is also known as `asin` or sin^{-1}.
255
-
256
- References
257
- ----------
258
- Abramowitz, M. and Stegun, I. A., *Handbook of Mathematical Functions*,
259
- 10th printing, New York: Dover, 1964, pp. 79ff.
260
- http://www.math.sfu.ca/~cbm/aands/
261
-
262
- Examples
263
- --------
264
- >>> np.arcsin(1) # pi/2
265
- 1.5707963267948966
266
- >>> np.arcsin(-1) # -pi/2
267
- -1.5707963267948966
268
- >>> np.arcsin(0)
269
- 0.0
270
-
271
- """)
272
-
273
- add_newdoc('numpy.core.umath', 'arcsinh',
274
- """
275
- Inverse hyperbolic sine element-wise.
276
-
277
- Parameters
278
- ----------
279
- x : array_like
280
- Input array.
281
- out : ndarray, optional
282
- Array into which the output is placed. Its type is preserved and it
283
- must be of the right shape to hold the output. See `doc.ufuncs`.
284
-
285
- Returns
286
- -------
287
- out : ndarray
288
- Array of of the same shape as `x`.
289
-
290
- Notes
291
- -----
292
- `arcsinh` is a multivalued function: for each `x` there are infinitely
293
- many numbers `z` such that `sinh(z) = x`. The convention is to return the
294
- `z` whose imaginary part lies in `[-pi/2, pi/2]`.
295
-
296
- For real-valued input data types, `arcsinh` always returns real output.
297
- For each value that cannot be expressed as a real number or infinity, it
298
- returns ``nan`` and sets the `invalid` floating point error flag.
299
-
300
- For complex-valued input, `arccos` is a complex analytical function that
301
- has branch cuts `[1j, infj]` and `[-1j, -infj]` and is continuous from
302
- the right on the former and from the left on the latter.
303
-
304
- The inverse hyperbolic sine is also known as `asinh` or ``sinh^-1``.
305
-
306
- References
307
- ----------
308
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
309
- 10th printing, 1964, pp. 86. http://www.math.sfu.ca/~cbm/aands/
310
- .. [2] Wikipedia, "Inverse hyperbolic function",
311
- http://en.wikipedia.org/wiki/Arcsinh
312
-
313
- Examples
314
- --------
315
- >>> np.arcsinh(np.array([np.e, 10.0]))
316
- array([ 1.72538256, 2.99822295])
317
-
318
- """)
319
-
320
- add_newdoc('numpy.core.umath', 'arctan',
321
- """
322
- Trigonometric inverse tangent, element-wise.
323
-
324
- The inverse of tan, so that if ``y = tan(x)`` then ``x = arctan(y)``.
325
-
326
- Parameters
327
- ----------
328
- x : array_like
329
- Input values. `arctan` is applied to each element of `x`.
330
-
331
- Returns
332
- -------
333
- out : ndarray
334
- Out has the same shape as `x`. Its real part is in
335
- ``[-pi/2, pi/2]`` (``arctan(+/-inf)`` returns ``+/-pi/2``).
336
- It is a scalar if `x` is a scalar.
337
-
338
- See Also
339
- --------
340
- arctan2 : The "four quadrant" arctan of the angle formed by (`x`, `y`)
341
- and the positive `x`-axis.
342
- angle : Argument of complex values.
343
-
344
- Notes
345
- -----
346
- `arctan` is a multi-valued function: for each `x` there are infinitely
347
- many numbers `z` such that tan(`z`) = `x`. The convention is to return
348
- the angle `z` whose real part lies in [-pi/2, pi/2].
349
-
350
- For real-valued input data types, `arctan` always returns real output.
351
- For each value that cannot be expressed as a real number or infinity,
352
- it yields ``nan`` and sets the `invalid` floating point error flag.
353
-
354
- For complex-valued input, `arctan` is a complex analytic function that
355
- has [`1j, infj`] and [`-1j, -infj`] as branch cuts, and is continuous
356
- from the left on the former and from the right on the latter.
357
-
358
- The inverse tangent is also known as `atan` or tan^{-1}.
359
-
360
- References
361
- ----------
362
- Abramowitz, M. and Stegun, I. A., *Handbook of Mathematical Functions*,
363
- 10th printing, New York: Dover, 1964, pp. 79.
364
- http://www.math.sfu.ca/~cbm/aands/
365
-
366
- Examples
367
- --------
368
- We expect the arctan of 0 to be 0, and of 1 to be pi/4:
369
-
370
- >>> np.arctan([0, 1])
371
- array([ 0. , 0.78539816])
372
-
373
- >>> np.pi/4
374
- 0.78539816339744828
375
-
376
- Plot arctan:
377
-
378
- >>> import matplotlib.pyplot as plt
379
- >>> x = np.linspace(-10, 10)
380
- >>> plt.plot(x, np.arctan(x))
381
- >>> plt.axis('tight')
382
- >>> plt.show()
383
-
384
- """)
385
-
386
- add_newdoc('numpy.core.umath', 'arctan2',
387
- """
388
- Element-wise arc tangent of ``x1/x2`` choosing the quadrant correctly.
389
-
390
- The quadrant (i.e., branch) is chosen so that ``arctan2(x1, x2)`` is
391
- the signed angle in radians between the ray ending at the origin and
392
- passing through the point (1,0), and the ray ending at the origin and
393
- passing through the point (`x2`, `x1`). (Note the role reversal: the
394
- "`y`-coordinate" is the first function parameter, the "`x`-coordinate"
395
- is the second.) By IEEE convention, this function is defined for
396
- `x2` = +/-0 and for either or both of `x1` and `x2` = +/-inf (see
397
- Notes for specific values).
398
-
399
- This function is not defined for complex-valued arguments; for the
400
- so-called argument of complex values, use `angle`.
401
-
402
- Parameters
403
- ----------
404
- x1 : array_like, real-valued
405
- `y`-coordinates.
406
- x2 : array_like, real-valued
407
- `x`-coordinates. `x2` must be broadcastable to match the shape of
408
- `x1` or vice versa.
409
-
410
- Returns
411
- -------
412
- angle : ndarray
413
- Array of angles in radians, in the range ``[-pi, pi]``.
414
-
415
- See Also
416
- --------
417
- arctan, tan, angle
418
-
419
- Notes
420
- -----
421
- *arctan2* is identical to the `atan2` function of the underlying
422
- C library. The following special values are defined in the C
423
- standard: [1]_
424
-
425
- ====== ====== ================
426
- `x1` `x2` `arctan2(x1,x2)`
427
- ====== ====== ================
428
- +/- 0 +0 +/- 0
429
- +/- 0 -0 +/- pi
430
- > 0 +/-inf +0 / +pi
431
- < 0 +/-inf -0 / -pi
432
- +/-inf +inf +/- (pi/4)
433
- +/-inf -inf +/- (3*pi/4)
434
- ====== ====== ================
435
-
436
- Note that +0 and -0 are distinct floating point numbers, as are +inf
437
- and -inf.
438
-
439
- References
440
- ----------
441
- .. [1] ISO/IEC standard 9899:1999, "Programming language C."
442
-
443
- Examples
444
- --------
445
- Consider four points in different quadrants:
446
-
447
- >>> x = np.array([-1, +1, +1, -1])
448
- >>> y = np.array([-1, -1, +1, +1])
449
- >>> np.arctan2(y, x) * 180 / np.pi
450
- array([-135., -45., 45., 135.])
451
-
452
- Note the order of the parameters. `arctan2` is defined also when `x2` = 0
453
- and at several other special points, obtaining values in
454
- the range ``[-pi, pi]``:
455
-
456
- >>> np.arctan2([1., -1.], [0., 0.])
457
- array([ 1.57079633, -1.57079633])
458
- >>> np.arctan2([0., 0., np.inf], [+0., -0., np.inf])
459
- array([ 0. , 3.14159265, 0.78539816])
460
-
461
- """)
462
-
463
- add_newdoc('numpy.core.umath', '_arg',
464
- """
465
- DO NOT USE, ONLY FOR TESTING
466
- """)
467
-
468
- add_newdoc('numpy.core.umath', 'arctanh',
469
- """
470
- Inverse hyperbolic tangent element-wise.
471
-
472
- Parameters
473
- ----------
474
- x : array_like
475
- Input array.
476
-
477
- Returns
478
- -------
479
- out : ndarray
480
- Array of the same shape as `x`.
481
-
482
- See Also
483
- --------
484
- emath.arctanh
485
-
486
- Notes
487
- -----
488
- `arctanh` is a multivalued function: for each `x` there are infinitely
489
- many numbers `z` such that `tanh(z) = x`. The convention is to return
490
- the `z` whose imaginary part lies in `[-pi/2, pi/2]`.
491
-
492
- For real-valued input data types, `arctanh` always returns real output.
493
- For each value that cannot be expressed as a real number or infinity,
494
- it yields ``nan`` and sets the `invalid` floating point error flag.
495
-
496
- For complex-valued input, `arctanh` is a complex analytical function
497
- that has branch cuts `[-1, -inf]` and `[1, inf]` and is continuous from
498
- above on the former and from below on the latter.
499
-
500
- The inverse hyperbolic tangent is also known as `atanh` or ``tanh^-1``.
501
-
502
- References
503
- ----------
504
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
505
- 10th printing, 1964, pp. 86. http://www.math.sfu.ca/~cbm/aands/
506
- .. [2] Wikipedia, "Inverse hyperbolic function",
507
- http://en.wikipedia.org/wiki/Arctanh
508
-
509
- Examples
510
- --------
511
- >>> np.arctanh([0, -0.5])
512
- array([ 0. , -0.54930614])
513
-
514
- """)
515
-
516
- add_newdoc('numpy.core.umath', 'bitwise_and',
517
- """
518
- Compute the bit-wise AND of two arrays element-wise.
519
-
520
- Computes the bit-wise AND of the underlying binary representation of
521
- the integers in the input arrays. This ufunc implements the C/Python
522
- operator ``&``.
523
-
524
- Parameters
525
- ----------
526
- x1, x2 : array_like
527
- Only integer and boolean types are handled.
528
-
529
- Returns
530
- -------
531
- out : array_like
532
- Result.
533
-
534
- See Also
535
- --------
536
- logical_and
537
- bitwise_or
538
- bitwise_xor
539
- binary_repr :
540
- Return the binary representation of the input number as a string.
541
-
542
- Examples
543
- --------
544
- The number 13 is represented by ``00001101``. Likewise, 17 is
545
- represented by ``00010001``. The bit-wise AND of 13 and 17 is
546
- therefore ``000000001``, or 1:
547
-
548
- >>> np.bitwise_and(13, 17)
549
- 1
550
-
551
- >>> np.bitwise_and(14, 13)
552
- 12
553
- >>> np.binary_repr(12)
554
- '1100'
555
- >>> np.bitwise_and([14,3], 13)
556
- array([12, 1])
557
-
558
- >>> np.bitwise_and([11,7], [4,25])
559
- array([0, 1])
560
- >>> np.bitwise_and(np.array([2,5,255]), np.array([3,14,16]))
561
- array([ 2, 4, 16])
562
- >>> np.bitwise_and([True, True], [False, True])
563
- array([False, True], dtype=bool)
564
-
565
- """)
566
-
567
- add_newdoc('numpy.core.umath', 'bitwise_or',
568
- """
569
- Compute the bit-wise OR of two arrays element-wise.
570
-
571
- Computes the bit-wise OR of the underlying binary representation of
572
- the integers in the input arrays. This ufunc implements the C/Python
573
- operator ``|``.
574
-
575
- Parameters
576
- ----------
577
- x1, x2 : array_like
578
- Only integer and boolean types are handled.
579
- out : ndarray, optional
580
- Array into which the output is placed. Its type is preserved and it
581
- must be of the right shape to hold the output. See doc.ufuncs.
582
-
583
- Returns
584
- -------
585
- out : array_like
586
- Result.
587
-
588
- See Also
589
- --------
590
- logical_or
591
- bitwise_and
592
- bitwise_xor
593
- binary_repr :
594
- Return the binary representation of the input number as a string.
595
-
596
- Examples
597
- --------
598
- The number 13 has the binaray representation ``00001101``. Likewise,
599
- 16 is represented by ``00010000``. The bit-wise OR of 13 and 16 is
600
- then ``000111011``, or 29:
601
-
602
- >>> np.bitwise_or(13, 16)
603
- 29
604
- >>> np.binary_repr(29)
605
- '11101'
606
-
607
- >>> np.bitwise_or(32, 2)
608
- 34
609
- >>> np.bitwise_or([33, 4], 1)
610
- array([33, 5])
611
- >>> np.bitwise_or([33, 4], [1, 2])
612
- array([33, 6])
613
-
614
- >>> np.bitwise_or(np.array([2, 5, 255]), np.array([4, 4, 4]))
615
- array([ 6, 5, 255])
616
- >>> np.array([2, 5, 255]) | np.array([4, 4, 4])
617
- array([ 6, 5, 255])
618
- >>> np.bitwise_or(np.array([2, 5, 255, 2147483647L], dtype=np.int32),
619
- ... np.array([4, 4, 4, 2147483647L], dtype=np.int32))
620
- array([ 6, 5, 255, 2147483647])
621
- >>> np.bitwise_or([True, True], [False, True])
622
- array([ True, True], dtype=bool)
623
-
624
- """)
625
-
626
- add_newdoc('numpy.core.umath', 'bitwise_xor',
627
- """
628
- Compute the bit-wise XOR of two arrays element-wise.
629
-
630
- Computes the bit-wise XOR of the underlying binary representation of
631
- the integers in the input arrays. This ufunc implements the C/Python
632
- operator ``^``.
633
-
634
- Parameters
635
- ----------
636
- x1, x2 : array_like
637
- Only integer and boolean types are handled.
638
-
639
- Returns
640
- -------
641
- out : array_like
642
- Result.
643
-
644
- See Also
645
- --------
646
- logical_xor
647
- bitwise_and
648
- bitwise_or
649
- binary_repr :
650
- Return the binary representation of the input number as a string.
651
-
652
- Examples
653
- --------
654
- The number 13 is represented by ``00001101``. Likewise, 17 is
655
- represented by ``00010001``. The bit-wise XOR of 13 and 17 is
656
- therefore ``00011100``, or 28:
657
-
658
- >>> np.bitwise_xor(13, 17)
659
- 28
660
- >>> np.binary_repr(28)
661
- '11100'
662
-
663
- >>> np.bitwise_xor(31, 5)
664
- 26
665
- >>> np.bitwise_xor([31,3], 5)
666
- array([26, 6])
667
-
668
- >>> np.bitwise_xor([31,3], [5,6])
669
- array([26, 5])
670
- >>> np.bitwise_xor([True, True], [False, True])
671
- array([ True, False], dtype=bool)
672
-
673
- """)
674
-
675
- add_newdoc('numpy.core.umath', 'ceil',
676
- """
677
- Return the ceiling of the input, element-wise.
678
-
679
- The ceil of the scalar `x` is the smallest integer `i`, such that
680
- `i >= x`. It is often denoted as :math:`\\lceil x \\rceil`.
681
-
682
- Parameters
683
- ----------
684
- x : array_like
685
- Input data.
686
-
687
- Returns
688
- -------
689
- y : {ndarray, scalar}
690
- The ceiling of each element in `x`, with `float` dtype.
691
-
692
- See Also
693
- --------
694
- floor, trunc, rint
695
-
696
- Examples
697
- --------
698
- >>> a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])
699
- >>> np.ceil(a)
700
- array([-1., -1., -0., 1., 2., 2., 2.])
701
-
702
- """)
703
-
704
- add_newdoc('numpy.core.umath', 'trunc',
705
- """
706
- Return the truncated value of the input, element-wise.
707
-
708
- The truncated value of the scalar `x` is the nearest integer `i` which
709
- is closer to zero than `x` is. In short, the fractional part of the
710
- signed number `x` is discarded.
711
-
712
- Parameters
713
- ----------
714
- x : array_like
715
- Input data.
716
-
717
- Returns
718
- -------
719
- y : {ndarray, scalar}
720
- The truncated value of each element in `x`.
721
-
722
- See Also
723
- --------
724
- ceil, floor, rint
725
-
726
- Notes
727
- -----
728
- .. versionadded:: 1.3.0
729
-
730
- Examples
731
- --------
732
- >>> a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])
733
- >>> np.trunc(a)
734
- array([-1., -1., -0., 0., 1., 1., 2.])
735
-
736
- """)
737
-
738
- add_newdoc('numpy.core.umath', 'conjugate',
739
- """
740
- Return the complex conjugate, element-wise.
741
-
742
- The complex conjugate of a complex number is obtained by changing the
743
- sign of its imaginary part.
744
-
745
- Parameters
746
- ----------
747
- x : array_like
748
- Input value.
749
-
750
- Returns
751
- -------
752
- y : ndarray
753
- The complex conjugate of `x`, with same dtype as `y`.
754
-
755
- Examples
756
- --------
757
- >>> np.conjugate(1+2j)
758
- (1-2j)
759
-
760
- >>> x = np.eye(2) + 1j * np.eye(2)
761
- >>> np.conjugate(x)
762
- array([[ 1.-1.j, 0.-0.j],
763
- [ 0.-0.j, 1.-1.j]])
764
-
765
- """)
766
-
767
- add_newdoc('numpy.core.umath', 'cos',
768
- """
769
- Cosine element-wise.
770
-
771
- Parameters
772
- ----------
773
- x : array_like
774
- Input array in radians.
775
- out : ndarray, optional
776
- Output array of same shape as `x`.
777
-
778
- Returns
779
- -------
780
- y : ndarray
781
- The corresponding cosine values.
782
-
783
- Raises
784
- ------
785
- ValueError: invalid return array shape
786
- if `out` is provided and `out.shape` != `x.shape` (See Examples)
787
-
788
- Notes
789
- -----
790
- If `out` is provided, the function writes the result into it,
791
- and returns a reference to `out`. (See Examples)
792
-
793
- References
794
- ----------
795
- M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions.
796
- New York, NY: Dover, 1972.
797
-
798
- Examples
799
- --------
800
- >>> np.cos(np.array([0, np.pi/2, np.pi]))
801
- array([ 1.00000000e+00, 6.12303177e-17, -1.00000000e+00])
802
- >>>
803
- >>> # Example of providing the optional output parameter
804
- >>> out2 = np.cos([0.1], out1)
805
- >>> out2 is out1
806
- True
807
- >>>
808
- >>> # Example of ValueError due to provision of shape mis-matched `out`
809
- >>> np.cos(np.zeros((3,3)),np.zeros((2,2)))
810
- Traceback (most recent call last):
811
- File "<stdin>", line 1, in <module>
812
- ValueError: invalid return array shape
813
-
814
- """)
815
-
816
- add_newdoc('numpy.core.umath', 'cosh',
817
- """
818
- Hyperbolic cosine, element-wise.
819
-
820
- Equivalent to ``1/2 * (np.exp(x) + np.exp(-x))`` and ``np.cos(1j*x)``.
821
-
822
- Parameters
823
- ----------
824
- x : array_like
825
- Input array.
826
-
827
- Returns
828
- -------
829
- out : ndarray
830
- Output array of same shape as `x`.
831
-
832
- Examples
833
- --------
834
- >>> np.cosh(0)
835
- 1.0
836
-
837
- The hyperbolic cosine describes the shape of a hanging cable:
838
-
839
- >>> import matplotlib.pyplot as plt
840
- >>> x = np.linspace(-4, 4, 1000)
841
- >>> plt.plot(x, np.cosh(x))
842
- >>> plt.show()
843
-
844
- """)
845
-
846
- add_newdoc('numpy.core.umath', 'degrees',
847
- """
848
- Convert angles from radians to degrees.
849
-
850
- Parameters
851
- ----------
852
- x : array_like
853
- Input array in radians.
854
- out : ndarray, optional
855
- Output array of same shape as x.
856
-
857
- Returns
858
- -------
859
- y : ndarray of floats
860
- The corresponding degree values; if `out` was supplied this is a
861
- reference to it.
862
-
863
- See Also
864
- --------
865
- rad2deg : equivalent function
866
-
867
- Examples
868
- --------
869
- Convert a radian array to degrees
870
-
871
- >>> rad = np.arange(12.)*np.pi/6
872
- >>> np.degrees(rad)
873
- array([ 0., 30., 60., 90., 120., 150., 180., 210., 240.,
874
- 270., 300., 330.])
875
-
876
- >>> out = np.zeros((rad.shape))
877
- >>> r = degrees(rad, out)
878
- >>> np.all(r == out)
879
- True
880
-
881
- """)
882
-
883
- add_newdoc('numpy.core.umath', 'rad2deg',
884
- """
885
- Convert angles from radians to degrees.
886
-
887
- Parameters
888
- ----------
889
- x : array_like
890
- Angle in radians.
891
- out : ndarray, optional
892
- Array into which the output is placed. Its type is preserved and it
893
- must be of the right shape to hold the output. See doc.ufuncs.
894
-
895
- Returns
896
- -------
897
- y : ndarray
898
- The corresponding angle in degrees.
899
-
900
- See Also
901
- --------
902
- deg2rad : Convert angles from degrees to radians.
903
- unwrap : Remove large jumps in angle by wrapping.
904
-
905
- Notes
906
- -----
907
- .. versionadded:: 1.3.0
908
-
909
- rad2deg(x) is ``180 * x / pi``.
910
-
911
- Examples
912
- --------
913
- >>> np.rad2deg(np.pi/2)
914
- 90.0
915
-
916
- """)
917
-
918
- add_newdoc('numpy.core.umath', 'divide',
919
- """
920
- Divide arguments element-wise.
921
-
922
- Parameters
923
- ----------
924
- x1 : array_like
925
- Dividend array.
926
- x2 : array_like
927
- Divisor array.
928
- out : ndarray, optional
929
- Array into which the output is placed. Its type is preserved and it
930
- must be of the right shape to hold the output. See doc.ufuncs.
931
-
932
- Returns
933
- -------
934
- y : {ndarray, scalar}
935
- The quotient `x1/x2`, element-wise. Returns a scalar if
936
- both `x1` and `x2` are scalars.
937
-
938
- See Also
939
- --------
940
- seterr : Set whether to raise or warn on overflow, underflow and
941
- division by zero.
942
-
943
- Notes
944
- -----
945
- Equivalent to `x1` / `x2` in terms of array-broadcasting.
946
-
947
- Behavior on division by zero can be changed using `seterr`.
948
-
949
- When both `x1` and `x2` are of an integer type, `divide` will return
950
- integers and throw away the fractional part. Moreover, division by zero
951
- always yields zero in integer arithmetic.
952
-
953
- Examples
954
- --------
955
- >>> np.divide(2.0, 4.0)
956
- 0.5
957
- >>> x1 = np.arange(9.0).reshape((3, 3))
958
- >>> x2 = np.arange(3.0)
959
- >>> np.divide(x1, x2)
960
- array([[ NaN, 1. , 1. ],
961
- [ Inf, 4. , 2.5],
962
- [ Inf, 7. , 4. ]])
963
-
964
- Note the behavior with integer types:
965
-
966
- >>> np.divide(2, 4)
967
- 0
968
- >>> np.divide(2, 4.)
969
- 0.5
970
-
971
- Division by zero always yields zero in integer arithmetic, and does not
972
- raise an exception or a warning:
973
-
974
- >>> np.divide(np.array([0, 1], dtype=int), np.array([0, 0], dtype=int))
975
- array([0, 0])
976
-
977
- Division by zero can, however, be caught using `seterr`:
978
-
979
- >>> old_err_state = np.seterr(divide='raise')
980
- >>> np.divide(1, 0)
981
- Traceback (most recent call last):
982
- File "<stdin>", line 1, in <module>
983
- FloatingPointError: divide by zero encountered in divide
984
-
985
- >>> ignored_states = np.seterr(**old_err_state)
986
- >>> np.divide(1, 0)
987
- 0
988
-
989
- """)
990
-
991
- add_newdoc('numpy.core.umath', 'equal',
992
- """
993
- Return (x1 == x2) element-wise.
994
-
995
- Parameters
996
- ----------
997
- x1, x2 : array_like
998
- Input arrays of the same shape.
999
-
1000
- Returns
1001
- -------
1002
- out : {ndarray, bool}
1003
- Output array of bools, or a single bool if x1 and x2 are scalars.
1004
-
1005
- See Also
1006
- --------
1007
- not_equal, greater_equal, less_equal, greater, less
1008
-
1009
- Examples
1010
- --------
1011
- >>> np.equal([0, 1, 3], np.arange(3))
1012
- array([ True, True, False], dtype=bool)
1013
-
1014
- What is compared are values, not types. So an int (1) and an array of
1015
- length one can evaluate as True:
1016
-
1017
- >>> np.equal(1, np.ones(1))
1018
- array([ True], dtype=bool)
1019
-
1020
- """)
1021
-
1022
- add_newdoc('numpy.core.umath', 'exp',
1023
- """
1024
- Calculate the exponential of all elements in the input array.
1025
-
1026
- Parameters
1027
- ----------
1028
- x : array_like
1029
- Input values.
1030
-
1031
- Returns
1032
- -------
1033
- out : ndarray
1034
- Output array, element-wise exponential of `x`.
1035
-
1036
- See Also
1037
- --------
1038
- expm1 : Calculate ``exp(x) - 1`` for all elements in the array.
1039
- exp2 : Calculate ``2**x`` for all elements in the array.
1040
-
1041
- Notes
1042
- -----
1043
- The irrational number ``e`` is also known as Euler's number. It is
1044
- approximately 2.718281, and is the base of the natural logarithm,
1045
- ``ln`` (this means that, if :math:`x = \\ln y = \\log_e y`,
1046
- then :math:`e^x = y`. For real input, ``exp(x)`` is always positive.
1047
-
1048
- For complex arguments, ``x = a + ib``, we can write
1049
- :math:`e^x = e^a e^{ib}`. The first term, :math:`e^a`, is already
1050
- known (it is the real argument, described above). The second term,
1051
- :math:`e^{ib}`, is :math:`\\cos b + i \\sin b`, a function with
1052
- magnitude 1 and a periodic phase.
1053
-
1054
- References
1055
- ----------
1056
- .. [1] Wikipedia, "Exponential function",
1057
- http://en.wikipedia.org/wiki/Exponential_function
1058
- .. [2] M. Abramovitz and I. A. Stegun, "Handbook of Mathematical Functions
1059
- with Formulas, Graphs, and Mathematical Tables," Dover, 1964, p. 69,
1060
- http://www.math.sfu.ca/~cbm/aands/page_69.htm
1061
-
1062
- Examples
1063
- --------
1064
- Plot the magnitude and phase of ``exp(x)`` in the complex plane:
1065
-
1066
- >>> import matplotlib.pyplot as plt
1067
-
1068
- >>> x = np.linspace(-2*np.pi, 2*np.pi, 100)
1069
- >>> xx = x + 1j * x[:, np.newaxis] # a + ib over complex plane
1070
- >>> out = np.exp(xx)
1071
-
1072
- >>> plt.subplot(121)
1073
- >>> plt.imshow(np.abs(out),
1074
- ... extent=[-2*np.pi, 2*np.pi, -2*np.pi, 2*np.pi])
1075
- >>> plt.title('Magnitude of exp(x)')
1076
-
1077
- >>> plt.subplot(122)
1078
- >>> plt.imshow(np.angle(out),
1079
- ... extent=[-2*np.pi, 2*np.pi, -2*np.pi, 2*np.pi])
1080
- >>> plt.title('Phase (angle) of exp(x)')
1081
- >>> plt.show()
1082
-
1083
- """)
1084
-
1085
- add_newdoc('numpy.core.umath', 'exp2',
1086
- """
1087
- Calculate `2**p` for all `p` in the input array.
1088
-
1089
- Parameters
1090
- ----------
1091
- x : array_like
1092
- Input values.
1093
-
1094
- out : ndarray, optional
1095
- Array to insert results into.
1096
-
1097
- Returns
1098
- -------
1099
- out : ndarray
1100
- Element-wise 2 to the power `x`.
1101
-
1102
- See Also
1103
- --------
1104
- power
1105
-
1106
- Notes
1107
- -----
1108
- .. versionadded:: 1.3.0
1109
-
1110
-
1111
-
1112
- Examples
1113
- --------
1114
- >>> np.exp2([2, 3])
1115
- array([ 4., 8.])
1116
-
1117
- """)
1118
-
1119
- add_newdoc('numpy.core.umath', 'expm1',
1120
- """
1121
- Calculate ``exp(x) - 1`` for all elements in the array.
1122
-
1123
- Parameters
1124
- ----------
1125
- x : array_like
1126
- Input values.
1127
-
1128
- Returns
1129
- -------
1130
- out : ndarray
1131
- Element-wise exponential minus one: ``out = exp(x) - 1``.
1132
-
1133
- See Also
1134
- --------
1135
- log1p : ``log(1 + x)``, the inverse of expm1.
1136
-
1137
-
1138
- Notes
1139
- -----
1140
- This function provides greater precision than ``exp(x) - 1``
1141
- for small values of ``x``.
1142
-
1143
- Examples
1144
- --------
1145
- The true value of ``exp(1e-10) - 1`` is ``1.00000000005e-10`` to
1146
- about 32 significant digits. This example shows the superiority of
1147
- expm1 in this case.
1148
-
1149
- >>> np.expm1(1e-10)
1150
- 1.00000000005e-10
1151
- >>> np.exp(1e-10) - 1
1152
- 1.000000082740371e-10
1153
-
1154
- """)
1155
-
1156
- add_newdoc('numpy.core.umath', 'fabs',
1157
- """
1158
- Compute the absolute values element-wise.
1159
-
1160
- This function returns the absolute values (positive magnitude) of the
1161
- data in `x`. Complex values are not handled, use `absolute` to find the
1162
- absolute values of complex data.
1163
-
1164
- Parameters
1165
- ----------
1166
- x : array_like
1167
- The array of numbers for which the absolute values are required. If
1168
- `x` is a scalar, the result `y` will also be a scalar.
1169
- out : ndarray, optional
1170
- Array into which the output is placed. Its type is preserved and it
1171
- must be of the right shape to hold the output. See doc.ufuncs.
1172
-
1173
- Returns
1174
- -------
1175
- y : {ndarray, scalar}
1176
- The absolute values of `x`, the returned values are always floats.
1177
-
1178
- See Also
1179
- --------
1180
- absolute : Absolute values including `complex` types.
1181
-
1182
- Examples
1183
- --------
1184
- >>> np.fabs(-1)
1185
- 1.0
1186
- >>> np.fabs([-1.2, 1.2])
1187
- array([ 1.2, 1.2])
1188
-
1189
- """)
1190
-
1191
- add_newdoc('numpy.core.umath', 'floor',
1192
- """
1193
- Return the floor of the input, element-wise.
1194
-
1195
- The floor of the scalar `x` is the largest integer `i`, such that
1196
- `i <= x`. It is often denoted as :math:`\\lfloor x \\rfloor`.
1197
-
1198
- Parameters
1199
- ----------
1200
- x : array_like
1201
- Input data.
1202
-
1203
- Returns
1204
- -------
1205
- y : {ndarray, scalar}
1206
- The floor of each element in `x`.
1207
-
1208
- See Also
1209
- --------
1210
- ceil, trunc, rint
1211
-
1212
- Notes
1213
- -----
1214
- Some spreadsheet programs calculate the "floor-towards-zero", in other
1215
- words ``floor(-2.5) == -2``. NumPy instead uses the definition of
1216
- `floor` where `floor(-2.5) == -3`.
1217
-
1218
- Examples
1219
- --------
1220
- >>> a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])
1221
- >>> np.floor(a)
1222
- array([-2., -2., -1., 0., 1., 1., 2.])
1223
-
1224
- """)
1225
-
1226
- add_newdoc('numpy.core.umath', 'floor_divide',
1227
- """
1228
- Return the largest integer smaller or equal to the division of the
1229
- inputs.
1230
-
1231
- Parameters
1232
- ----------
1233
- x1 : array_like
1234
- Numerator.
1235
- x2 : array_like
1236
- Denominator.
1237
-
1238
- Returns
1239
- -------
1240
- y : ndarray
1241
- y = floor(`x1`/`x2`)
1242
-
1243
-
1244
- See Also
1245
- --------
1246
- divide : Standard division.
1247
- floor : Round a number to the nearest integer toward minus infinity.
1248
- ceil : Round a number to the nearest integer toward infinity.
1249
-
1250
- Examples
1251
- --------
1252
- >>> np.floor_divide(7,3)
1253
- 2
1254
- >>> np.floor_divide([1., 2., 3., 4.], 2.5)
1255
- array([ 0., 0., 1., 1.])
1256
-
1257
- """)
1258
-
1259
- add_newdoc('numpy.core.umath', 'fmod',
1260
- """
1261
- Return the element-wise remainder of division.
1262
-
1263
- This is the NumPy implementation of the C library function fmod, the
1264
- remainder has the same sign as the dividend `x1`. It is equivalent to
1265
- the Matlab(TM) ``rem`` function and should not be confused with the
1266
- Python modulus operator ``x1 % x2``.
1267
-
1268
- Parameters
1269
- ----------
1270
- x1 : array_like
1271
- Dividend.
1272
- x2 : array_like
1273
- Divisor.
1274
-
1275
- Returns
1276
- -------
1277
- y : array_like
1278
- The remainder of the division of `x1` by `x2`.
1279
-
1280
- See Also
1281
- --------
1282
- remainder : Equivalent to the Python ``%`` operator.
1283
- divide
1284
-
1285
- Notes
1286
- -----
1287
- The result of the modulo operation for negative dividend and divisors
1288
- is bound by conventions. For `fmod`, the sign of result is the sign of
1289
- the dividend, while for `remainder` the sign of the result is the sign
1290
- of the divisor. The `fmod` function is equivalent to the Matlab(TM)
1291
- ``rem`` function.
1292
-
1293
- Examples
1294
- --------
1295
- >>> np.fmod([-3, -2, -1, 1, 2, 3], 2)
1296
- array([-1, 0, -1, 1, 0, 1])
1297
- >>> np.remainder([-3, -2, -1, 1, 2, 3], 2)
1298
- array([1, 0, 1, 1, 0, 1])
1299
-
1300
- >>> np.fmod([5, 3], [2, 2.])
1301
- array([ 1., 1.])
1302
- >>> a = np.arange(-3, 3).reshape(3, 2)
1303
- >>> a
1304
- array([[-3, -2],
1305
- [-1, 0],
1306
- [ 1, 2]])
1307
- >>> np.fmod(a, [2,2])
1308
- array([[-1, 0],
1309
- [-1, 0],
1310
- [ 1, 0]])
1311
-
1312
- """)
1313
-
1314
- add_newdoc('numpy.core.umath', 'greater',
1315
- """
1316
- Return the truth value of (x1 > x2) element-wise.
1317
-
1318
- Parameters
1319
- ----------
1320
- x1, x2 : array_like
1321
- Input arrays. If ``x1.shape != x2.shape``, they must be
1322
- broadcastable to a common shape (which may be the shape of one or
1323
- the other).
1324
-
1325
- Returns
1326
- -------
1327
- out : bool or ndarray of bool
1328
- Array of bools, or a single bool if `x1` and `x2` are scalars.
1329
-
1330
-
1331
- See Also
1332
- --------
1333
- greater_equal, less, less_equal, equal, not_equal
1334
-
1335
- Examples
1336
- --------
1337
- >>> np.greater([4,2],[2,2])
1338
- array([ True, False], dtype=bool)
1339
-
1340
- If the inputs are ndarrays, then np.greater is equivalent to '>'.
1341
-
1342
- >>> a = np.array([4,2])
1343
- >>> b = np.array([2,2])
1344
- >>> a > b
1345
- array([ True, False], dtype=bool)
1346
-
1347
- """)
1348
-
1349
- add_newdoc('numpy.core.umath', 'greater_equal',
1350
- """
1351
- Return the truth value of (x1 >= x2) element-wise.
1352
-
1353
- Parameters
1354
- ----------
1355
- x1, x2 : array_like
1356
- Input arrays. If ``x1.shape != x2.shape``, they must be
1357
- broadcastable to a common shape (which may be the shape of one or
1358
- the other).
1359
-
1360
- Returns
1361
- -------
1362
- out : bool or ndarray of bool
1363
- Array of bools, or a single bool if `x1` and `x2` are scalars.
1364
-
1365
- See Also
1366
- --------
1367
- greater, less, less_equal, equal, not_equal
1368
-
1369
- Examples
1370
- --------
1371
- >>> np.greater_equal([4, 2, 1], [2, 2, 2])
1372
- array([ True, True, False], dtype=bool)
1373
-
1374
- """)
1375
-
1376
- add_newdoc('numpy.core.umath', 'hypot',
1377
- """
1378
- Given the "legs" of a right triangle, return its hypotenuse.
1379
-
1380
- Equivalent to ``sqrt(x1**2 + x2**2)``, element-wise. If `x1` or
1381
- `x2` is scalar_like (i.e., unambiguously cast-able to a scalar type),
1382
- it is broadcast for use with each element of the other argument.
1383
- (See Examples)
1384
-
1385
- Parameters
1386
- ----------
1387
- x1, x2 : array_like
1388
- Leg of the triangle(s).
1389
- out : ndarray, optional
1390
- Array into which the output is placed. Its type is preserved and it
1391
- must be of the right shape to hold the output. See doc.ufuncs.
1392
-
1393
- Returns
1394
- -------
1395
- z : ndarray
1396
- The hypotenuse of the triangle(s).
1397
-
1398
- Examples
1399
- --------
1400
- >>> np.hypot(3*np.ones((3, 3)), 4*np.ones((3, 3)))
1401
- array([[ 5., 5., 5.],
1402
- [ 5., 5., 5.],
1403
- [ 5., 5., 5.]])
1404
-
1405
- Example showing broadcast of scalar_like argument:
1406
-
1407
- >>> np.hypot(3*np.ones((3, 3)), [4])
1408
- array([[ 5., 5., 5.],
1409
- [ 5., 5., 5.],
1410
- [ 5., 5., 5.]])
1411
-
1412
- """)
1413
-
1414
- add_newdoc('numpy.core.umath', 'invert',
1415
- """
1416
- Compute bit-wise inversion, or bit-wise NOT, element-wise.
1417
-
1418
- Computes the bit-wise NOT of the underlying binary representation of
1419
- the integers in the input arrays. This ufunc implements the C/Python
1420
- operator ``~``.
1421
-
1422
- For signed integer inputs, the two's complement is returned. In a
1423
- two's-complement system negative numbers are represented by the two's
1424
- complement of the absolute value. This is the most common method of
1425
- representing signed integers on computers [1]_. A N-bit
1426
- two's-complement system can represent every integer in the range
1427
- :math:`-2^{N-1}` to :math:`+2^{N-1}-1`.
1428
-
1429
- Parameters
1430
- ----------
1431
- x1 : array_like
1432
- Only integer and boolean types are handled.
1433
-
1434
- Returns
1435
- -------
1436
- out : array_like
1437
- Result.
1438
-
1439
- See Also
1440
- --------
1441
- bitwise_and, bitwise_or, bitwise_xor
1442
- logical_not
1443
- binary_repr :
1444
- Return the binary representation of the input number as a string.
1445
-
1446
- Notes
1447
- -----
1448
- `bitwise_not` is an alias for `invert`:
1449
-
1450
- >>> np.bitwise_not is np.invert
1451
- True
1452
-
1453
- References
1454
- ----------
1455
- .. [1] Wikipedia, "Two's complement",
1456
- http://en.wikipedia.org/wiki/Two's_complement
1457
-
1458
- Examples
1459
- --------
1460
- We've seen that 13 is represented by ``00001101``.
1461
- The invert or bit-wise NOT of 13 is then:
1462
-
1463
- >>> np.invert(np.array([13], dtype=uint8))
1464
- array([242], dtype=uint8)
1465
- >>> np.binary_repr(x, width=8)
1466
- '00001101'
1467
- >>> np.binary_repr(242, width=8)
1468
- '11110010'
1469
-
1470
- The result depends on the bit-width:
1471
-
1472
- >>> np.invert(np.array([13], dtype=uint16))
1473
- array([65522], dtype=uint16)
1474
- >>> np.binary_repr(x, width=16)
1475
- '0000000000001101'
1476
- >>> np.binary_repr(65522, width=16)
1477
- '1111111111110010'
1478
-
1479
- When using signed integer types the result is the two's complement of
1480
- the result for the unsigned type:
1481
-
1482
- >>> np.invert(np.array([13], dtype=int8))
1483
- array([-14], dtype=int8)
1484
- >>> np.binary_repr(-14, width=8)
1485
- '11110010'
1486
-
1487
- Booleans are accepted as well:
1488
-
1489
- >>> np.invert(array([True, False]))
1490
- array([False, True], dtype=bool)
1491
-
1492
- """)
1493
-
1494
- add_newdoc('numpy.core.umath', 'isfinite',
1495
- """
1496
- Test element-wise for finiteness (not infinity or not Not a Number).
1497
-
1498
- The result is returned as a boolean array.
1499
-
1500
- Parameters
1501
- ----------
1502
- x : array_like
1503
- Input values.
1504
- out : ndarray, optional
1505
- Array into which the output is placed. Its type is preserved and it
1506
- must be of the right shape to hold the output. See `doc.ufuncs`.
1507
-
1508
- Returns
1509
- -------
1510
- y : ndarray, bool
1511
- For scalar input, the result is a new boolean with value True
1512
- if the input is finite; otherwise the value is False (input is
1513
- either positive infinity, negative infinity or Not a Number).
1514
-
1515
- For array input, the result is a boolean array with the same
1516
- dimensions as the input and the values are True if the
1517
- corresponding element of the input is finite; otherwise the values
1518
- are False (element is either positive infinity, negative infinity
1519
- or Not a Number).
1520
-
1521
- See Also
1522
- --------
1523
- isinf, isneginf, isposinf, isnan
1524
-
1525
- Notes
1526
- -----
1527
- Not a Number, positive infinity and negative infinity are considered
1528
- to be non-finite.
1529
-
1530
- Numpy uses the IEEE Standard for Binary Floating-Point for Arithmetic
1531
- (IEEE 754). This means that Not a Number is not equivalent to infinity.
1532
- Also that positive infinity is not equivalent to negative infinity. But
1533
- infinity is equivalent to positive infinity. Errors result if the
1534
- second argument is also supplied when `x` is a scalar input, or if
1535
- first and second arguments have different shapes.
1536
-
1537
- Examples
1538
- --------
1539
- >>> np.isfinite(1)
1540
- True
1541
- >>> np.isfinite(0)
1542
- True
1543
- >>> np.isfinite(np.nan)
1544
- False
1545
- >>> np.isfinite(np.inf)
1546
- False
1547
- >>> np.isfinite(np.NINF)
1548
- False
1549
- >>> np.isfinite([np.log(-1.),1.,np.log(0)])
1550
- array([False, True, False], dtype=bool)
1551
-
1552
- >>> x = np.array([-np.inf, 0., np.inf])
1553
- >>> y = np.array([2, 2, 2])
1554
- >>> np.isfinite(x, y)
1555
- array([0, 1, 0])
1556
- >>> y
1557
- array([0, 1, 0])
1558
-
1559
- """)
1560
-
1561
- add_newdoc('numpy.core.umath', 'isinf',
1562
- """
1563
- Test element-wise for positive or negative infinity.
1564
-
1565
- Returns a boolean array of the same shape as `x`, True where ``x ==
1566
- +/-inf``, otherwise False.
1567
-
1568
- Parameters
1569
- ----------
1570
- x : array_like
1571
- Input values
1572
- out : array_like, optional
1573
- An array with the same shape as `x` to store the result.
1574
-
1575
- Returns
1576
- -------
1577
- y : bool (scalar) or boolean ndarray
1578
- For scalar input, the result is a new boolean with value True if
1579
- the input is positive or negative infinity; otherwise the value is
1580
- False.
1581
-
1582
- For array input, the result is a boolean array with the same shape
1583
- as the input and the values are True where the corresponding
1584
- element of the input is positive or negative infinity; elsewhere
1585
- the values are False. If a second argument was supplied the result
1586
- is stored there. If the type of that array is a numeric type the
1587
- result is represented as zeros and ones, if the type is boolean
1588
- then as False and True, respectively. The return value `y` is then
1589
- a reference to that array.
1590
-
1591
- See Also
1592
- --------
1593
- isneginf, isposinf, isnan, isfinite
1594
-
1595
- Notes
1596
- -----
1597
- Numpy uses the IEEE Standard for Binary Floating-Point for Arithmetic
1598
- (IEEE 754).
1599
-
1600
- Errors result if the second argument is supplied when the first
1601
- argument is a scalar, or if the first and second arguments have
1602
- different shapes.
1603
-
1604
- Examples
1605
- --------
1606
- >>> np.isinf(np.inf)
1607
- True
1608
- >>> np.isinf(np.nan)
1609
- False
1610
- >>> np.isinf(np.NINF)
1611
- True
1612
- >>> np.isinf([np.inf, -np.inf, 1.0, np.nan])
1613
- array([ True, True, False, False], dtype=bool)
1614
-
1615
- >>> x = np.array([-np.inf, 0., np.inf])
1616
- >>> y = np.array([2, 2, 2])
1617
- >>> np.isinf(x, y)
1618
- array([1, 0, 1])
1619
- >>> y
1620
- array([1, 0, 1])
1621
-
1622
- """)
1623
-
1624
- add_newdoc('numpy.core.umath', 'isnan',
1625
- """
1626
- Test element-wise for NaN and return result as a boolean array.
1627
-
1628
- Parameters
1629
- ----------
1630
- x : array_like
1631
- Input array.
1632
-
1633
- Returns
1634
- -------
1635
- y : {ndarray, bool}
1636
- For scalar input, the result is a new boolean with value True if
1637
- the input is NaN; otherwise the value is False.
1638
-
1639
- For array input, the result is a boolean array of the same
1640
- dimensions as the input and the values are True if the
1641
- corresponding element of the input is NaN; otherwise the values are
1642
- False.
1643
-
1644
- See Also
1645
- --------
1646
- isinf, isneginf, isposinf, isfinite
1647
-
1648
- Notes
1649
- -----
1650
- Numpy uses the IEEE Standard for Binary Floating-Point for Arithmetic
1651
- (IEEE 754). This means that Not a Number is not equivalent to infinity.
1652
-
1653
- Examples
1654
- --------
1655
- >>> np.isnan(np.nan)
1656
- True
1657
- >>> np.isnan(np.inf)
1658
- False
1659
- >>> np.isnan([np.log(-1.),1.,np.log(0)])
1660
- array([ True, False, False], dtype=bool)
1661
-
1662
- """)
1663
-
1664
- add_newdoc('numpy.core.umath', 'left_shift',
1665
- """
1666
- Shift the bits of an integer to the left.
1667
-
1668
- Bits are shifted to the left by appending `x2` 0s at the right of `x1`.
1669
- Since the internal representation of numbers is in binary format, this
1670
- operation is equivalent to multiplying `x1` by ``2**x2``.
1671
-
1672
- Parameters
1673
- ----------
1674
- x1 : array_like of integer type
1675
- Input values.
1676
- x2 : array_like of integer type
1677
- Number of zeros to append to `x1`. Has to be non-negative.
1678
-
1679
- Returns
1680
- -------
1681
- out : array of integer type
1682
- Return `x1` with bits shifted `x2` times to the left.
1683
-
1684
- See Also
1685
- --------
1686
- right_shift : Shift the bits of an integer to the right.
1687
- binary_repr : Return the binary representation of the input number
1688
- as a string.
1689
-
1690
- Examples
1691
- --------
1692
- >>> np.binary_repr(5)
1693
- '101'
1694
- >>> np.left_shift(5, 2)
1695
- 20
1696
- >>> np.binary_repr(20)
1697
- '10100'
1698
-
1699
- >>> np.left_shift(5, [1,2,3])
1700
- array([10, 20, 40])
1701
-
1702
- """)
1703
-
1704
- add_newdoc('numpy.core.umath', 'less',
1705
- """
1706
- Return the truth value of (x1 < x2) element-wise.
1707
-
1708
- Parameters
1709
- ----------
1710
- x1, x2 : array_like
1711
- Input arrays. If ``x1.shape != x2.shape``, they must be
1712
- broadcastable to a common shape (which may be the shape of one or
1713
- the other).
1714
-
1715
- Returns
1716
- -------
1717
- out : bool or ndarray of bool
1718
- Array of bools, or a single bool if `x1` and `x2` are scalars.
1719
-
1720
- See Also
1721
- --------
1722
- greater, less_equal, greater_equal, equal, not_equal
1723
-
1724
- Examples
1725
- --------
1726
- >>> np.less([1, 2], [2, 2])
1727
- array([ True, False], dtype=bool)
1728
-
1729
- """)
1730
-
1731
- add_newdoc('numpy.core.umath', 'less_equal',
1732
- """
1733
- Return the truth value of (x1 =< x2) element-wise.
1734
-
1735
- Parameters
1736
- ----------
1737
- x1, x2 : array_like
1738
- Input arrays. If ``x1.shape != x2.shape``, they must be
1739
- broadcastable to a common shape (which may be the shape of one or
1740
- the other).
1741
-
1742
- Returns
1743
- -------
1744
- out : bool or ndarray of bool
1745
- Array of bools, or a single bool if `x1` and `x2` are scalars.
1746
-
1747
- See Also
1748
- --------
1749
- greater, less, greater_equal, equal, not_equal
1750
-
1751
- Examples
1752
- --------
1753
- >>> np.less_equal([4, 2, 1], [2, 2, 2])
1754
- array([False, True, True], dtype=bool)
1755
-
1756
- """)
1757
-
1758
- add_newdoc('numpy.core.umath', 'log',
1759
- """
1760
- Natural logarithm, element-wise.
1761
-
1762
- The natural logarithm `log` is the inverse of the exponential function,
1763
- so that `log(exp(x)) = x`. The natural logarithm is logarithm in base
1764
- `e`.
1765
-
1766
- Parameters
1767
- ----------
1768
- x : array_like
1769
- Input value.
1770
-
1771
- Returns
1772
- -------
1773
- y : ndarray
1774
- The natural logarithm of `x`, element-wise.
1775
-
1776
- See Also
1777
- --------
1778
- log10, log2, log1p, emath.log
1779
-
1780
- Notes
1781
- -----
1782
- Logarithm is a multivalued function: for each `x` there is an infinite
1783
- number of `z` such that `exp(z) = x`. The convention is to return the
1784
- `z` whose imaginary part lies in `[-pi, pi]`.
1785
-
1786
- For real-valued input data types, `log` always returns real output. For
1787
- each value that cannot be expressed as a real number or infinity, it
1788
- yields ``nan`` and sets the `invalid` floating point error flag.
1789
-
1790
- For complex-valued input, `log` is a complex analytical function that
1791
- has a branch cut `[-inf, 0]` and is continuous from above on it. `log`
1792
- handles the floating-point negative zero as an infinitesimal negative
1793
- number, conforming to the C99 standard.
1794
-
1795
- References
1796
- ----------
1797
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
1798
- 10th printing, 1964, pp. 67. http://www.math.sfu.ca/~cbm/aands/
1799
- .. [2] Wikipedia, "Logarithm". http://en.wikipedia.org/wiki/Logarithm
1800
-
1801
- Examples
1802
- --------
1803
- >>> np.log([1, np.e, np.e**2, 0])
1804
- array([ 0., 1., 2., -Inf])
1805
-
1806
- """)
1807
-
1808
- add_newdoc('numpy.core.umath', 'log10',
1809
- """
1810
- Return the base 10 logarithm of the input array, element-wise.
1811
-
1812
- Parameters
1813
- ----------
1814
- x : array_like
1815
- Input values.
1816
-
1817
- Returns
1818
- -------
1819
- y : ndarray
1820
- The logarithm to the base 10 of `x`, element-wise. NaNs are
1821
- returned where x is negative.
1822
-
1823
- See Also
1824
- --------
1825
- emath.log10
1826
-
1827
- Notes
1828
- -----
1829
- Logarithm is a multivalued function: for each `x` there is an infinite
1830
- number of `z` such that `10**z = x`. The convention is to return the
1831
- `z` whose imaginary part lies in `[-pi, pi]`.
1832
-
1833
- For real-valued input data types, `log10` always returns real output.
1834
- For each value that cannot be expressed as a real number or infinity,
1835
- it yields ``nan`` and sets the `invalid` floating point error flag.
1836
-
1837
- For complex-valued input, `log10` is a complex analytical function that
1838
- has a branch cut `[-inf, 0]` and is continuous from above on it.
1839
- `log10` handles the floating-point negative zero as an infinitesimal
1840
- negative number, conforming to the C99 standard.
1841
-
1842
- References
1843
- ----------
1844
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
1845
- 10th printing, 1964, pp. 67. http://www.math.sfu.ca/~cbm/aands/
1846
- .. [2] Wikipedia, "Logarithm". http://en.wikipedia.org/wiki/Logarithm
1847
-
1848
- Examples
1849
- --------
1850
- >>> np.log10([1e-15, -3.])
1851
- array([-15., NaN])
1852
-
1853
- """)
1854
-
1855
- add_newdoc('numpy.core.umath', 'log2',
1856
- """
1857
- Base-2 logarithm of `x`.
1858
-
1859
- Parameters
1860
- ----------
1861
- x : array_like
1862
- Input values.
1863
-
1864
- Returns
1865
- -------
1866
- y : ndarray
1867
- Base-2 logarithm of `x`.
1868
-
1869
- See Also
1870
- --------
1871
- log, log10, log1p, emath.log2
1872
-
1873
- Notes
1874
- -----
1875
- .. versionadded:: 1.3.0
1876
-
1877
- Logarithm is a multivalued function: for each `x` there is an infinite
1878
- number of `z` such that `2**z = x`. The convention is to return the `z`
1879
- whose imaginary part lies in `[-pi, pi]`.
1880
-
1881
- For real-valued input data types, `log2` always returns real output.
1882
- For each value that cannot be expressed as a real number or infinity,
1883
- it yields ``nan`` and sets the `invalid` floating point error flag.
1884
-
1885
- For complex-valued input, `log2` is a complex analytical function that
1886
- has a branch cut `[-inf, 0]` and is continuous from above on it. `log2`
1887
- handles the floating-point negative zero as an infinitesimal negative
1888
- number, conforming to the C99 standard.
1889
-
1890
- Examples
1891
- --------
1892
- >>> x = np.array([0, 1, 2, 2**4])
1893
- >>> np.log2(x)
1894
- array([-Inf, 0., 1., 4.])
1895
-
1896
- >>> xi = np.array([0+1.j, 1, 2+0.j, 4.j])
1897
- >>> np.log2(xi)
1898
- array([ 0.+2.26618007j, 0.+0.j , 1.+0.j , 2.+2.26618007j])
1899
-
1900
- """)
1901
-
1902
- add_newdoc('numpy.core.umath', 'logaddexp',
1903
- """
1904
- Logarithm of the sum of exponentiations of the inputs.
1905
-
1906
- Calculates ``log(exp(x1) + exp(x2))``. This function is useful in
1907
- statistics where the calculated probabilities of events may be so small
1908
- as to exceed the range of normal floating point numbers. In such cases
1909
- the logarithm of the calculated probability is stored. This function
1910
- allows adding probabilities stored in such a fashion.
1911
-
1912
- Parameters
1913
- ----------
1914
- x1, x2 : array_like
1915
- Input values.
1916
-
1917
- Returns
1918
- -------
1919
- result : ndarray
1920
- Logarithm of ``exp(x1) + exp(x2)``.
1921
-
1922
- See Also
1923
- --------
1924
- logaddexp2: Logarithm of the sum of exponentiations of inputs in base 2.
1925
-
1926
- Notes
1927
- -----
1928
- .. versionadded:: 1.3.0
1929
-
1930
- Examples
1931
- --------
1932
- >>> prob1 = np.log(1e-50)
1933
- >>> prob2 = np.log(2.5e-50)
1934
- >>> prob12 = np.logaddexp(prob1, prob2)
1935
- >>> prob12
1936
- -113.87649168120691
1937
- >>> np.exp(prob12)
1938
- 3.5000000000000057e-50
1939
-
1940
- """)
1941
-
1942
- add_newdoc('numpy.core.umath', 'logaddexp2',
1943
- """
1944
- Logarithm of the sum of exponentiations of the inputs in base-2.
1945
-
1946
- Calculates ``log2(2**x1 + 2**x2)``. This function is useful in machine
1947
- learning when the calculated probabilities of events may be so small as
1948
- to exceed the range of normal floating point numbers. In such cases
1949
- the base-2 logarithm of the calculated probability can be used instead.
1950
- This function allows adding probabilities stored in such a fashion.
1951
-
1952
- Parameters
1953
- ----------
1954
- x1, x2 : array_like
1955
- Input values.
1956
- out : ndarray, optional
1957
- Array to store results in.
1958
-
1959
- Returns
1960
- -------
1961
- result : ndarray
1962
- Base-2 logarithm of ``2**x1 + 2**x2``.
1963
-
1964
- See Also
1965
- --------
1966
- logaddexp: Logarithm of the sum of exponentiations of the inputs.
1967
-
1968
- Notes
1969
- -----
1970
- .. versionadded:: 1.3.0
1971
-
1972
- Examples
1973
- --------
1974
- >>> prob1 = np.log2(1e-50)
1975
- >>> prob2 = np.log2(2.5e-50)
1976
- >>> prob12 = np.logaddexp2(prob1, prob2)
1977
- >>> prob1, prob2, prob12
1978
- (-166.09640474436813, -164.77447664948076, -164.28904982231052)
1979
- >>> 2**prob12
1980
- 3.4999999999999914e-50
1981
-
1982
- """)
1983
-
1984
- add_newdoc('numpy.core.umath', 'log1p',
1985
- """
1986
- Return the natural logarithm of one plus the input array, element-wise.
1987
-
1988
- Calculates ``log(1 + x)``.
1989
-
1990
- Parameters
1991
- ----------
1992
- x : array_like
1993
- Input values.
1994
-
1995
- Returns
1996
- -------
1997
- y : ndarray
1998
- Natural logarithm of `1 + x`, element-wise.
1999
-
2000
- See Also
2001
- --------
2002
- expm1 : ``exp(x) - 1``, the inverse of `log1p`.
2003
-
2004
- Notes
2005
- -----
2006
- For real-valued input, `log1p` is accurate also for `x` so small
2007
- that `1 + x == 1` in floating-point accuracy.
2008
-
2009
- Logarithm is a multivalued function: for each `x` there is an infinite
2010
- number of `z` such that `exp(z) = 1 + x`. The convention is to return
2011
- the `z` whose imaginary part lies in `[-pi, pi]`.
2012
-
2013
- For real-valued input data types, `log1p` always returns real output.
2014
- For each value that cannot be expressed as a real number or infinity,
2015
- it yields ``nan`` and sets the `invalid` floating point error flag.
2016
-
2017
- For complex-valued input, `log1p` is a complex analytical function that
2018
- has a branch cut `[-inf, -1]` and is continuous from above on it.
2019
- `log1p` handles the floating-point negative zero as an infinitesimal
2020
- negative number, conforming to the C99 standard.
2021
-
2022
- References
2023
- ----------
2024
- .. [1] M. Abramowitz and I.A. Stegun, "Handbook of Mathematical Functions",
2025
- 10th printing, 1964, pp. 67. http://www.math.sfu.ca/~cbm/aands/
2026
- .. [2] Wikipedia, "Logarithm". http://en.wikipedia.org/wiki/Logarithm
2027
-
2028
- Examples
2029
- --------
2030
- >>> np.log1p(1e-99)
2031
- 1e-99
2032
- >>> np.log(1 + 1e-99)
2033
- 0.0
2034
-
2035
- """)
2036
-
2037
- add_newdoc('numpy.core.umath', 'logical_and',
2038
- """
2039
- Compute the truth value of x1 AND x2 element-wise.
2040
-
2041
- Parameters
2042
- ----------
2043
- x1, x2 : array_like
2044
- Input arrays. `x1` and `x2` must be of the same shape.
2045
-
2046
-
2047
- Returns
2048
- -------
2049
- y : {ndarray, bool}
2050
- Boolean result with the same shape as `x1` and `x2` of the logical
2051
- AND operation on corresponding elements of `x1` and `x2`.
2052
-
2053
- See Also
2054
- --------
2055
- logical_or, logical_not, logical_xor
2056
- bitwise_and
2057
-
2058
- Examples
2059
- --------
2060
- >>> np.logical_and(True, False)
2061
- False
2062
- >>> np.logical_and([True, False], [False, False])
2063
- array([False, False], dtype=bool)
2064
-
2065
- >>> x = np.arange(5)
2066
- >>> np.logical_and(x>1, x<4)
2067
- array([False, False, True, True, False], dtype=bool)
2068
-
2069
- """)
2070
-
2071
- add_newdoc('numpy.core.umath', 'logical_not',
2072
- """
2073
- Compute the truth value of NOT x element-wise.
2074
-
2075
- Parameters
2076
- ----------
2077
- x : array_like
2078
- Logical NOT is applied to the elements of `x`.
2079
-
2080
- Returns
2081
- -------
2082
- y : bool or ndarray of bool
2083
- Boolean result with the same shape as `x` of the NOT operation
2084
- on elements of `x`.
2085
-
2086
- See Also
2087
- --------
2088
- logical_and, logical_or, logical_xor
2089
-
2090
- Examples
2091
- --------
2092
- >>> np.logical_not(3)
2093
- False
2094
- >>> np.logical_not([True, False, 0, 1])
2095
- array([False, True, True, False], dtype=bool)
2096
-
2097
- >>> x = np.arange(5)
2098
- >>> np.logical_not(x<3)
2099
- array([False, False, False, True, True], dtype=bool)
2100
-
2101
- """)
2102
-
2103
- add_newdoc('numpy.core.umath', 'logical_or',
2104
- """
2105
- Compute the truth value of x1 OR x2 element-wise.
2106
-
2107
- Parameters
2108
- ----------
2109
- x1, x2 : array_like
2110
- Logical OR is applied to the elements of `x1` and `x2`.
2111
- They have to be of the same shape.
2112
-
2113
- Returns
2114
- -------
2115
- y : {ndarray, bool}
2116
- Boolean result with the same shape as `x1` and `x2` of the logical
2117
- OR operation on elements of `x1` and `x2`.
2118
-
2119
- See Also
2120
- --------
2121
- logical_and, logical_not, logical_xor
2122
- bitwise_or
2123
-
2124
- Examples
2125
- --------
2126
- >>> np.logical_or(True, False)
2127
- True
2128
- >>> np.logical_or([True, False], [False, False])
2129
- array([ True, False], dtype=bool)
2130
-
2131
- >>> x = np.arange(5)
2132
- >>> np.logical_or(x < 1, x > 3)
2133
- array([ True, False, False, False, True], dtype=bool)
2134
-
2135
- """)
2136
-
2137
- add_newdoc('numpy.core.umath', 'logical_xor',
2138
- """
2139
- Compute the truth value of x1 XOR x2, element-wise.
2140
-
2141
- Parameters
2142
- ----------
2143
- x1, x2 : array_like
2144
- Logical XOR is applied to the elements of `x1` and `x2`. They must
2145
- be broadcastable to the same shape.
2146
-
2147
- Returns
2148
- -------
2149
- y : bool or ndarray of bool
2150
- Boolean result of the logical XOR operation applied to the elements
2151
- of `x1` and `x2`; the shape is determined by whether or not
2152
- broadcasting of one or both arrays was required.
2153
-
2154
- See Also
2155
- --------
2156
- logical_and, logical_or, logical_not, bitwise_xor
2157
-
2158
- Examples
2159
- --------
2160
- >>> np.logical_xor(True, False)
2161
- True
2162
- >>> np.logical_xor([True, True, False, False], [True, False, True, False])
2163
- array([False, True, True, False], dtype=bool)
2164
-
2165
- >>> x = np.arange(5)
2166
- >>> np.logical_xor(x < 1, x > 3)
2167
- array([ True, False, False, False, True], dtype=bool)
2168
-
2169
- Simple example showing support of broadcasting
2170
-
2171
- >>> np.logical_xor(0, np.eye(2))
2172
- array([[ True, False],
2173
- [False, True]], dtype=bool)
2174
-
2175
- """)
2176
-
2177
- add_newdoc('numpy.core.umath', 'maximum',
2178
- """
2179
- Element-wise maximum of array elements.
2180
-
2181
- Compare two arrays and returns a new array containing the element-wise
2182
- maxima. If one of the elements being compared is a NaN, then that
2183
- element is returned. If both elements are NaNs then the first is
2184
- returned. The latter distinction is important for complex NaNs, which
2185
- are defined as at least one of the real or imaginary parts being a NaN.
2186
- The net effect is that NaNs are propagated.
2187
-
2188
- Parameters
2189
- ----------
2190
- x1, x2 : array_like
2191
- The arrays holding the elements to be compared. They must have
2192
- the same shape, or shapes that can be broadcast to a single shape.
2193
-
2194
- Returns
2195
- -------
2196
- y : {ndarray, scalar}
2197
- The maximum of `x1` and `x2`, element-wise. Returns scalar if
2198
- both `x1` and `x2` are scalars.
2199
-
2200
- See Also
2201
- --------
2202
- minimum :
2203
- Element-wise minimum of two arrays, propagates NaNs.
2204
- fmax :
2205
- Element-wise maximum of two arrays, ignores NaNs.
2206
- amax :
2207
- The maximum value of an array along a given axis, propagates NaNs.
2208
- nanmax :
2209
- The maximum value of an array along a given axis, ignores NaNs.
2210
-
2211
- fmin, amin, nanmin
2212
-
2213
- Notes
2214
- -----
2215
- The maximum is equivalent to ``np.where(x1 >= x2, x1, x2)`` when
2216
- neither x1 nor x2 are nans, but it is faster and does proper
2217
- broadcasting.
2218
-
2219
- Examples
2220
- --------
2221
- >>> np.maximum([2, 3, 4], [1, 5, 2])
2222
- array([2, 5, 4])
2223
-
2224
- >>> np.maximum(np.eye(2), [0.5, 2]) # broadcasting
2225
- array([[ 1. , 2. ],
2226
- [ 0.5, 2. ]])
2227
-
2228
- >>> np.maximum([np.nan, 0, np.nan], [0, np.nan, np.nan])
2229
- array([ NaN, NaN, NaN])
2230
- >>> np.maximum(np.Inf, 1)
2231
- inf
2232
-
2233
- """)
2234
-
2235
- add_newdoc('numpy.core.umath', 'minimum',
2236
- """
2237
- Element-wise minimum of array elements.
2238
-
2239
- Compare two arrays and returns a new array containing the element-wise
2240
- minima. If one of the elements being compared is a NaN, then that
2241
- element is returned. If both elements are NaNs then the first is
2242
- returned. The latter distinction is important for complex NaNs, which
2243
- are defined as at least one of the real or imaginary parts being a NaN.
2244
- The net effect is that NaNs are propagated.
2245
-
2246
- Parameters
2247
- ----------
2248
- x1, x2 : array_like
2249
- The arrays holding the elements to be compared. They must have
2250
- the same shape, or shapes that can be broadcast to a single shape.
2251
-
2252
- Returns
2253
- -------
2254
- y : {ndarray, scalar}
2255
- The minimum of `x1` and `x2`, element-wise. Returns scalar if
2256
- both `x1` and `x2` are scalars.
2257
-
2258
- See Also
2259
- --------
2260
- maximum :
2261
- Element-wise maximum of two arrays, propagates NaNs.
2262
- fmin :
2263
- Element-wise minimum of two arrays, ignores NaNs.
2264
- amin :
2265
- The minimum value of an array along a given axis, propagates NaNs.
2266
- nanmin :
2267
- The minimum value of an array along a given axis, ignores NaNs.
2268
-
2269
- fmax, amax, nanmax
2270
-
2271
- Notes
2272
- -----
2273
- The minimum is equivalent to ``np.where(x1 <= x2, x1, x2)`` when
2274
- neither x1 nor x2 are NaNs, but it is faster and does proper
2275
- broadcasting.
2276
-
2277
- Examples
2278
- --------
2279
- >>> np.minimum([2, 3, 4], [1, 5, 2])
2280
- array([1, 3, 2])
2281
-
2282
- >>> np.minimum(np.eye(2), [0.5, 2]) # broadcasting
2283
- array([[ 0.5, 0. ],
2284
- [ 0. , 1. ]])
2285
-
2286
- >>> np.minimum([np.nan, 0, np.nan],[0, np.nan, np.nan])
2287
- array([ NaN, NaN, NaN])
2288
- >>> np.minimum(-np.Inf, 1)
2289
- -inf
2290
-
2291
- """)
2292
-
2293
- add_newdoc('numpy.core.umath', 'fmax',
2294
- """
2295
- Element-wise maximum of array elements.
2296
-
2297
- Compare two arrays and returns a new array containing the element-wise
2298
- maxima. If one of the elements being compared is a NaN, then the
2299
- non-nan element is returned. If both elements are NaNs then the first
2300
- is returned. The latter distinction is important for complex NaNs,
2301
- which are defined as at least one of the real or imaginary parts being
2302
- a NaN. The net effect is that NaNs are ignored when possible.
2303
-
2304
- Parameters
2305
- ----------
2306
- x1, x2 : array_like
2307
- The arrays holding the elements to be compared. They must have
2308
- the same shape.
2309
-
2310
- Returns
2311
- -------
2312
- y : {ndarray, scalar}
2313
- The minimum of `x1` and `x2`, element-wise. Returns scalar if
2314
- both `x1` and `x2` are scalars.
2315
-
2316
- See Also
2317
- --------
2318
- fmin :
2319
- Element-wise minimum of two arrays, ignores NaNs.
2320
- maximum :
2321
- Element-wise maximum of two arrays, propagates NaNs.
2322
- amax :
2323
- The maximum value of an array along a given axis, propagates NaNs.
2324
- nanmax :
2325
- The maximum value of an array along a given axis, ignores NaNs.
2326
-
2327
- minimum, amin, nanmin
2328
-
2329
- Notes
2330
- -----
2331
- .. versionadded:: 1.3.0
2332
-
2333
- The fmax is equivalent to ``np.where(x1 >= x2, x1, x2)`` when neither
2334
- x1 nor x2 are NaNs, but it is faster and does proper broadcasting.
2335
-
2336
- Examples
2337
- --------
2338
- >>> np.fmax([2, 3, 4], [1, 5, 2])
2339
- array([ 2., 5., 4.])
2340
-
2341
- >>> np.fmax(np.eye(2), [0.5, 2])
2342
- array([[ 1. , 2. ],
2343
- [ 0.5, 2. ]])
2344
-
2345
- >>> np.fmax([np.nan, 0, np.nan],[0, np.nan, np.nan])
2346
- array([ 0., 0., NaN])
2347
-
2348
- """)
2349
-
2350
- add_newdoc('numpy.core.umath', 'fmin',
2351
- """
2352
- Element-wise minimum of array elements.
2353
-
2354
- Compare two arrays and returns a new array containing the element-wise
2355
- minima. If one of the elements being compared is a NaN, then the
2356
- non-nan element is returned. If both elements are NaNs then the first
2357
- is returned. The latter distinction is important for complex NaNs,
2358
- which are defined as at least one of the real or imaginary parts being
2359
- a NaN. The net effect is that NaNs are ignored when possible.
2360
-
2361
- Parameters
2362
- ----------
2363
- x1, x2 : array_like
2364
- The arrays holding the elements to be compared. They must have
2365
- the same shape.
2366
-
2367
- Returns
2368
- -------
2369
- y : {ndarray, scalar}
2370
- The minimum of `x1` and `x2`, element-wise. Returns scalar if
2371
- both `x1` and `x2` are scalars.
2372
-
2373
- See Also
2374
- --------
2375
- fmax :
2376
- Element-wise maximum of two arrays, ignores NaNs.
2377
- minimum :
2378
- Element-wise minimum of two arrays, propagates NaNs.
2379
- amin :
2380
- The minimum value of an array along a given axis, propagates NaNs.
2381
- nanmin :
2382
- The minimum value of an array along a given axis, ignores NaNs.
2383
-
2384
- maximum, amax, nanmax
2385
-
2386
- Notes
2387
- -----
2388
- .. versionadded:: 1.3.0
2389
-
2390
- The fmin is equivalent to ``np.where(x1 <= x2, x1, x2)`` when neither
2391
- x1 nor x2 are NaNs, but it is faster and does proper broadcasting.
2392
-
2393
- Examples
2394
- --------
2395
- >>> np.fmin([2, 3, 4], [1, 5, 2])
2396
- array([2, 5, 4])
2397
-
2398
- >>> np.fmin(np.eye(2), [0.5, 2])
2399
- array([[ 1. , 2. ],
2400
- [ 0.5, 2. ]])
2401
-
2402
- >>> np.fmin([np.nan, 0, np.nan],[0, np.nan, np.nan])
2403
- array([ 0., 0., NaN])
2404
-
2405
- """)
2406
-
2407
- add_newdoc('numpy.core.umath', 'modf',
2408
- """
2409
- Return the fractional and integral parts of an array, element-wise.
2410
-
2411
- The fractional and integral parts are negative if the given number is
2412
- negative.
2413
-
2414
- Parameters
2415
- ----------
2416
- x : array_like
2417
- Input array.
2418
-
2419
- Returns
2420
- -------
2421
- y1 : ndarray
2422
- Fractional part of `x`.
2423
- y2 : ndarray
2424
- Integral part of `x`.
2425
-
2426
- Notes
2427
- -----
2428
- For integer input the return values are floats.
2429
-
2430
- Examples
2431
- --------
2432
- >>> np.modf([0, 3.5])
2433
- (array([ 0. , 0.5]), array([ 0., 3.]))
2434
- >>> np.modf(-0.5)
2435
- (-0.5, -0)
2436
-
2437
- """)
2438
-
2439
- add_newdoc('numpy.core.umath', 'multiply',
2440
- """
2441
- Multiply arguments element-wise.
2442
-
2443
- Parameters
2444
- ----------
2445
- x1, x2 : array_like
2446
- Input arrays to be multiplied.
2447
-
2448
- Returns
2449
- -------
2450
- y : ndarray
2451
- The product of `x1` and `x2`, element-wise. Returns a scalar if
2452
- both `x1` and `x2` are scalars.
2453
-
2454
- Notes
2455
- -----
2456
- Equivalent to `x1` * `x2` in terms of array broadcasting.
2457
-
2458
- Examples
2459
- --------
2460
- >>> np.multiply(2.0, 4.0)
2461
- 8.0
2462
-
2463
- >>> x1 = np.arange(9.0).reshape((3, 3))
2464
- >>> x2 = np.arange(3.0)
2465
- >>> np.multiply(x1, x2)
2466
- array([[ 0., 1., 4.],
2467
- [ 0., 4., 10.],
2468
- [ 0., 7., 16.]])
2469
-
2470
- """)
2471
-
2472
- add_newdoc('numpy.core.umath', 'negative',
2473
- """
2474
- Numerical negative, element-wise.
2475
-
2476
- Parameters
2477
- ----------
2478
- x : array_like or scalar
2479
- Input array.
2480
-
2481
- Returns
2482
- -------
2483
- y : ndarray or scalar
2484
- Returned array or scalar: `y = -x`.
2485
-
2486
- Examples
2487
- --------
2488
- >>> np.negative([1.,-1.])
2489
- array([-1., 1.])
2490
-
2491
- """)
2492
-
2493
- add_newdoc('numpy.core.umath', 'not_equal',
2494
- """
2495
- Return (x1 != x2) element-wise.
2496
-
2497
- Parameters
2498
- ----------
2499
- x1, x2 : array_like
2500
- Input arrays.
2501
- out : ndarray, optional
2502
- A placeholder the same shape as `x1` to store the result.
2503
- See `doc.ufuncs` (Section "Output arguments") for more details.
2504
-
2505
- Returns
2506
- -------
2507
- not_equal : ndarray bool, scalar bool
2508
- For each element in `x1, x2`, return True if `x1` is not equal
2509
- to `x2` and False otherwise.
2510
-
2511
-
2512
- See Also
2513
- --------
2514
- equal, greater, greater_equal, less, less_equal
2515
-
2516
- Examples
2517
- --------
2518
- >>> np.not_equal([1.,2.], [1., 3.])
2519
- array([False, True], dtype=bool)
2520
- >>> np.not_equal([1, 2], [[1, 3],[1, 4]])
2521
- array([[False, True],
2522
- [False, True]], dtype=bool)
2523
-
2524
- """)
2525
-
2526
- add_newdoc('numpy.core.umath', '_ones_like',
2527
- """
2528
- This function used to be the numpy.ones_like, but now a specific
2529
- function for that has been written for consistency with the other
2530
- *_like functions. It is only used internally in a limited fashion now.
2531
-
2532
- See Also
2533
- --------
2534
- ones_like
2535
-
2536
- """)
2537
-
2538
- add_newdoc('numpy.core.umath', 'power',
2539
- """
2540
- First array elements raised to powers from second array, element-wise.
2541
-
2542
- Raise each base in `x1` to the positionally-corresponding power in
2543
- `x2`. `x1` and `x2` must be broadcastable to the same shape.
2544
-
2545
- Parameters
2546
- ----------
2547
- x1 : array_like
2548
- The bases.
2549
- x2 : array_like
2550
- The exponents.
2551
-
2552
- Returns
2553
- -------
2554
- y : ndarray
2555
- The bases in `x1` raised to the exponents in `x2`.
2556
-
2557
- Examples
2558
- --------
2559
- Cube each element in a list.
2560
-
2561
- >>> x1 = range(6)
2562
- >>> x1
2563
- [0, 1, 2, 3, 4, 5]
2564
- >>> np.power(x1, 3)
2565
- array([ 0, 1, 8, 27, 64, 125])
2566
-
2567
- Raise the bases to different exponents.
2568
-
2569
- >>> x2 = [1.0, 2.0, 3.0, 3.0, 2.0, 1.0]
2570
- >>> np.power(x1, x2)
2571
- array([ 0., 1., 8., 27., 16., 5.])
2572
-
2573
- The effect of broadcasting.
2574
-
2575
- >>> x2 = np.array([[1, 2, 3, 3, 2, 1], [1, 2, 3, 3, 2, 1]])
2576
- >>> x2
2577
- array([[1, 2, 3, 3, 2, 1],
2578
- [1, 2, 3, 3, 2, 1]])
2579
- >>> np.power(x1, x2)
2580
- array([[ 0, 1, 8, 27, 16, 5],
2581
- [ 0, 1, 8, 27, 16, 5]])
2582
-
2583
- """)
2584
-
2585
- add_newdoc('numpy.core.umath', 'radians',
2586
- """
2587
- Convert angles from degrees to radians.
2588
-
2589
- Parameters
2590
- ----------
2591
- x : array_like
2592
- Input array in degrees.
2593
- out : ndarray, optional
2594
- Output array of same shape as `x`.
2595
-
2596
- Returns
2597
- -------
2598
- y : ndarray
2599
- The corresponding radian values.
2600
-
2601
- See Also
2602
- --------
2603
- deg2rad : equivalent function
2604
-
2605
- Examples
2606
- --------
2607
- Convert a degree array to radians
2608
-
2609
- >>> deg = np.arange(12.) * 30.
2610
- >>> np.radians(deg)
2611
- array([ 0. , 0.52359878, 1.04719755, 1.57079633, 2.0943951 ,
2612
- 2.61799388, 3.14159265, 3.66519143, 4.1887902 , 4.71238898,
2613
- 5.23598776, 5.75958653])
2614
-
2615
- >>> out = np.zeros((deg.shape))
2616
- >>> ret = np.radians(deg, out)
2617
- >>> ret is out
2618
- True
2619
-
2620
- """)
2621
-
2622
- add_newdoc('numpy.core.umath', 'deg2rad',
2623
- """
2624
- Convert angles from degrees to radians.
2625
-
2626
- Parameters
2627
- ----------
2628
- x : array_like
2629
- Angles in degrees.
2630
-
2631
- Returns
2632
- -------
2633
- y : ndarray
2634
- The corresponding angle in radians.
2635
-
2636
- See Also
2637
- --------
2638
- rad2deg : Convert angles from radians to degrees.
2639
- unwrap : Remove large jumps in angle by wrapping.
2640
-
2641
- Notes
2642
- -----
2643
- .. versionadded:: 1.3.0
2644
-
2645
- ``deg2rad(x)`` is ``x * pi / 180``.
2646
-
2647
- Examples
2648
- --------
2649
- >>> np.deg2rad(180)
2650
- 3.1415926535897931
2651
-
2652
- """)
2653
-
2654
- add_newdoc('numpy.core.umath', 'reciprocal',
2655
- """
2656
- Return the reciprocal of the argument, element-wise.
2657
-
2658
- Calculates ``1/x``.
2659
-
2660
- Parameters
2661
- ----------
2662
- x : array_like
2663
- Input array.
2664
-
2665
- Returns
2666
- -------
2667
- y : ndarray
2668
- Return array.
2669
-
2670
- Notes
2671
- -----
2672
- .. note::
2673
- This function is not designed to work with integers.
2674
-
2675
- For integer arguments with absolute value larger than 1 the result is
2676
- always zero because of the way Python handles integer division. For
2677
- integer zero the result is an overflow.
2678
-
2679
- Examples
2680
- --------
2681
- >>> np.reciprocal(2.)
2682
- 0.5
2683
- >>> np.reciprocal([1, 2., 3.33])
2684
- array([ 1. , 0.5 , 0.3003003])
2685
-
2686
- """)
2687
-
2688
- add_newdoc('numpy.core.umath', 'remainder',
2689
- """
2690
- Return element-wise remainder of division.
2691
-
2692
- Computes ``x1 - floor(x1 / x2) * x2``, the result has the same sign as
2693
- the divisor `x2`. It is equivalent to the Python modulus operator
2694
- ``x1 % x2`` and should not be confused with the Matlab(TM) ``rem``
2695
- function.
2696
-
2697
- Parameters
2698
- ----------
2699
- x1 : array_like
2700
- Dividend array.
2701
- x2 : array_like
2702
- Divisor array.
2703
- out : ndarray, optional
2704
- Array into which the output is placed. Its type is preserved and it
2705
- must be of the right shape to hold the output. See doc.ufuncs.
2706
-
2707
- Returns
2708
- -------
2709
- y : ndarray
2710
- The remainder of the quotient ``x1/x2``, element-wise. Returns a
2711
- scalar if both `x1` and `x2` are scalars.
2712
-
2713
- See Also
2714
- --------
2715
- fmod : Equivalent of the Matlab(TM) ``rem`` function.
2716
- divide, floor
2717
-
2718
- Notes
2719
- -----
2720
- Returns 0 when `x2` is 0 and both `x1` and `x2` are (arrays of)
2721
- integers.
2722
-
2723
- Examples
2724
- --------
2725
- >>> np.remainder([4, 7], [2, 3])
2726
- array([0, 1])
2727
- >>> np.remainder(np.arange(7), 5)
2728
- array([0, 1, 2, 3, 4, 0, 1])
2729
-
2730
- """)
2731
-
2732
- add_newdoc('numpy.core.umath', 'right_shift',
2733
- """
2734
- Shift the bits of an integer to the right.
2735
-
2736
- Bits are shifted to the right `x2`. Because the internal
2737
- representation of numbers is in binary format, this operation is
2738
- equivalent to dividing `x1` by ``2**x2``.
2739
-
2740
- Parameters
2741
- ----------
2742
- x1 : array_like, int
2743
- Input values.
2744
- x2 : array_like, int
2745
- Number of bits to remove at the right of `x1`.
2746
-
2747
- Returns
2748
- -------
2749
- out : ndarray, int
2750
- Return `x1` with bits shifted `x2` times to the right.
2751
-
2752
- See Also
2753
- --------
2754
- left_shift : Shift the bits of an integer to the left.
2755
- binary_repr : Return the binary representation of the input number
2756
- as a string.
2757
-
2758
- Examples
2759
- --------
2760
- >>> np.binary_repr(10)
2761
- '1010'
2762
- >>> np.right_shift(10, 1)
2763
- 5
2764
- >>> np.binary_repr(5)
2765
- '101'
2766
-
2767
- >>> np.right_shift(10, [1,2,3])
2768
- array([5, 2, 1])
2769
-
2770
- """)
2771
-
2772
- add_newdoc('numpy.core.umath', 'rint',
2773
- """
2774
- Round elements of the array to the nearest integer.
2775
-
2776
- Parameters
2777
- ----------
2778
- x : array_like
2779
- Input array.
2780
-
2781
- Returns
2782
- -------
2783
- out : {ndarray, scalar}
2784
- Output array is same shape and type as `x`.
2785
-
2786
- See Also
2787
- --------
2788
- ceil, floor, trunc
2789
-
2790
- Examples
2791
- --------
2792
- >>> a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])
2793
- >>> np.rint(a)
2794
- array([-2., -2., -0., 0., 2., 2., 2.])
2795
-
2796
- """)
2797
-
2798
- add_newdoc('numpy.core.umath', 'sign',
2799
- """
2800
- Returns an element-wise indication of the sign of a number.
2801
-
2802
- The `sign` function returns ``-1 if x < 0, 0 if x==0, 1 if x > 0``.
2803
-
2804
- Parameters
2805
- ----------
2806
- x : array_like
2807
- Input values.
2808
-
2809
- Returns
2810
- -------
2811
- y : ndarray
2812
- The sign of `x`.
2813
-
2814
- Examples
2815
- --------
2816
- >>> np.sign([-5., 4.5])
2817
- array([-1., 1.])
2818
- >>> np.sign(0)
2819
- 0
2820
-
2821
- """)
2822
-
2823
- add_newdoc('numpy.core.umath', 'signbit',
2824
- """
2825
- Returns element-wise True where signbit is set (less than zero).
2826
-
2827
- Parameters
2828
- ----------
2829
- x : array_like
2830
- The input value(s).
2831
- out : ndarray, optional
2832
- Array into which the output is placed. Its type is preserved and it
2833
- must be of the right shape to hold the output. See `doc.ufuncs`.
2834
-
2835
- Returns
2836
- -------
2837
- result : ndarray of bool
2838
- Output array, or reference to `out` if that was supplied.
2839
-
2840
- Examples
2841
- --------
2842
- >>> np.signbit(-1.2)
2843
- True
2844
- >>> np.signbit(np.array([1, -2.3, 2.1]))
2845
- array([False, True, False], dtype=bool)
2846
-
2847
- """)
2848
-
2849
- add_newdoc('numpy.core.umath', 'copysign',
2850
- """
2851
- Change the sign of x1 to that of x2, element-wise.
2852
-
2853
- If both arguments are arrays or sequences, they have to be of the same
2854
- length. If `x2` is a scalar, its sign will be copied to all elements of
2855
- `x1`.
2856
-
2857
- Parameters
2858
- ----------
2859
- x1 : array_like
2860
- Values to change the sign of.
2861
- x2 : array_like
2862
- The sign of `x2` is copied to `x1`.
2863
- out : ndarray, optional
2864
- Array into which the output is placed. Its type is preserved and it
2865
- must be of the right shape to hold the output. See doc.ufuncs.
2866
-
2867
- Returns
2868
- -------
2869
- out : array_like
2870
- The values of `x1` with the sign of `x2`.
2871
-
2872
- Examples
2873
- --------
2874
- >>> np.copysign(1.3, -1)
2875
- -1.3
2876
- >>> 1/np.copysign(0, 1)
2877
- inf
2878
- >>> 1/np.copysign(0, -1)
2879
- -inf
2880
-
2881
- >>> np.copysign([-1, 0, 1], -1.1)
2882
- array([-1., -0., -1.])
2883
- >>> np.copysign([-1, 0, 1], np.arange(3)-1)
2884
- array([-1., 0., 1.])
2885
-
2886
- """)
2887
-
2888
- add_newdoc('numpy.core.umath', 'nextafter',
2889
- """
2890
- Return the next floating-point value after x1 towards x2, element-wise.
2891
-
2892
- Parameters
2893
- ----------
2894
- x1 : array_like
2895
- Values to find the next representable value of.
2896
- x2 : array_like
2897
- The direction where to look for the next representable value of `x1`.
2898
- out : ndarray, optional
2899
- Array into which the output is placed. Its type is preserved and it
2900
- must be of the right shape to hold the output. See `doc.ufuncs`.
2901
-
2902
- Returns
2903
- -------
2904
- out : array_like
2905
- The next representable values of `x1` in the direction of `x2`.
2906
-
2907
- Examples
2908
- --------
2909
- >>> eps = np.finfo(np.float64).eps
2910
- >>> np.nextafter(1, 2) == eps + 1
2911
- True
2912
- >>> np.nextafter([1, 2], [2, 1]) == [eps + 1, 2 - eps]
2913
- array([ True, True], dtype=bool)
2914
-
2915
- """)
2916
-
2917
- add_newdoc('numpy.core.umath', 'spacing',
2918
- """
2919
- Return the distance between x and the nearest adjacent number.
2920
-
2921
- Parameters
2922
- ----------
2923
- x1 : array_like
2924
- Values to find the spacing of.
2925
-
2926
- Returns
2927
- -------
2928
- out : array_like
2929
- The spacing of values of `x1`.
2930
-
2931
- Notes
2932
- -----
2933
- It can be considered as a generalization of EPS:
2934
- ``spacing(np.float64(1)) == np.finfo(np.float64).eps``, and there
2935
- should not be any representable number between ``x + spacing(x)`` and
2936
- x for any finite x.
2937
-
2938
- Spacing of +- inf and NaN is NaN.
2939
-
2940
- Examples
2941
- --------
2942
- >>> np.spacing(1) == np.finfo(np.float64).eps
2943
- True
2944
-
2945
- """)
2946
-
2947
- add_newdoc('numpy.core.umath', 'sin',
2948
- """
2949
- Trigonometric sine, element-wise.
2950
-
2951
- Parameters
2952
- ----------
2953
- x : array_like
2954
- Angle, in radians (:math:`2 \\pi` rad equals 360 degrees).
2955
-
2956
- Returns
2957
- -------
2958
- y : array_like
2959
- The sine of each element of x.
2960
-
2961
- See Also
2962
- --------
2963
- arcsin, sinh, cos
2964
-
2965
- Notes
2966
- -----
2967
- The sine is one of the fundamental functions of trigonometry (the
2968
- mathematical study of triangles). Consider a circle of radius 1
2969
- centered on the origin. A ray comes in from the :math:`+x` axis, makes
2970
- an angle at the origin (measured counter-clockwise from that axis), and
2971
- departs from the origin. The :math:`y` coordinate of the outgoing
2972
- ray's intersection with the unit circle is the sine of that angle. It
2973
- ranges from -1 for :math:`x=3\\pi / 2` to +1 for :math:`\\pi / 2.` The
2974
- function has zeroes where the angle is a multiple of :math:`\\pi`.
2975
- Sines of angles between :math:`\\pi` and :math:`2\\pi` are negative.
2976
- The numerous properties of the sine and related functions are included
2977
- in any standard trigonometry text.
2978
-
2979
- Examples
2980
- --------
2981
- Print sine of one angle:
2982
-
2983
- >>> np.sin(np.pi/2.)
2984
- 1.0
2985
-
2986
- Print sines of an array of angles given in degrees:
2987
-
2988
- >>> np.sin(np.array((0., 30., 45., 60., 90.)) * np.pi / 180. )
2989
- array([ 0. , 0.5 , 0.70710678, 0.8660254 , 1. ])
2990
-
2991
- Plot the sine function:
2992
-
2993
- >>> import matplotlib.pylab as plt
2994
- >>> x = np.linspace(-np.pi, np.pi, 201)
2995
- >>> plt.plot(x, np.sin(x))
2996
- >>> plt.xlabel('Angle [rad]')
2997
- >>> plt.ylabel('sin(x)')
2998
- >>> plt.axis('tight')
2999
- >>> plt.show()
3000
-
3001
- """)
3002
-
3003
- add_newdoc('numpy.core.umath', 'sinh',
3004
- """
3005
- Hyperbolic sine, element-wise.
3006
-
3007
- Equivalent to ``1/2 * (np.exp(x) - np.exp(-x))`` or
3008
- ``-1j * np.sin(1j*x)``.
3009
-
3010
- Parameters
3011
- ----------
3012
- x : array_like
3013
- Input array.
3014
- out : ndarray, optional
3015
- Output array of same shape as `x`.
3016
-
3017
- Returns
3018
- -------
3019
- y : ndarray
3020
- The corresponding hyperbolic sine values.
3021
-
3022
- Raises
3023
- ------
3024
- ValueError: invalid return array shape
3025
- if `out` is provided and `out.shape` != `x.shape` (See Examples)
3026
-
3027
- Notes
3028
- -----
3029
- If `out` is provided, the function writes the result into it,
3030
- and returns a reference to `out`. (See Examples)
3031
-
3032
- References
3033
- ----------
3034
- M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions.
3035
- New York, NY: Dover, 1972, pg. 83.
3036
-
3037
- Examples
3038
- --------
3039
- >>> np.sinh(0)
3040
- 0.0
3041
- >>> np.sinh(np.pi*1j/2)
3042
- 1j
3043
- >>> np.sinh(np.pi*1j) # (exact value is 0)
3044
- 1.2246063538223773e-016j
3045
- >>> # Discrepancy due to vagaries of floating point arithmetic.
3046
-
3047
- >>> # Example of providing the optional output parameter
3048
- >>> out2 = np.sinh([0.1], out1)
3049
- >>> out2 is out1
3050
- True
3051
-
3052
- >>> # Example of ValueError due to provision of shape mis-matched `out`
3053
- >>> np.sinh(np.zeros((3,3)),np.zeros((2,2)))
3054
- Traceback (most recent call last):
3055
- File "<stdin>", line 1, in <module>
3056
- ValueError: invalid return array shape
3057
-
3058
- """)
3059
-
3060
- add_newdoc('numpy.core.umath', 'sqrt',
3061
- """
3062
- Return the positive square-root of an array, element-wise.
3063
-
3064
- Parameters
3065
- ----------
3066
- x : array_like
3067
- The values whose square-roots are required.
3068
- out : ndarray, optional
3069
- Alternate array object in which to put the result; if provided, it
3070
- must have the same shape as `x`
3071
-
3072
- Returns
3073
- -------
3074
- y : ndarray
3075
- An array of the same shape as `x`, containing the positive
3076
- square-root of each element in `x`. If any element in `x` is
3077
- complex, a complex array is returned (and the square-roots of
3078
- negative reals are calculated). If all of the elements in `x`
3079
- are real, so is `y`, with negative elements returning ``nan``.
3080
- If `out` was provided, `y` is a reference to it.
3081
-
3082
- See Also
3083
- --------
3084
- lib.scimath.sqrt
3085
- A version which returns complex numbers when given negative reals.
3086
-
3087
- Notes
3088
- -----
3089
- *sqrt* has--consistent with common convention--as its branch cut the
3090
- real "interval" [`-inf`, 0), and is continuous from above on it.
3091
- A branch cut is a curve in the complex plane across which a given
3092
- complex function fails to be continuous.
3093
-
3094
- Examples
3095
- --------
3096
- >>> np.sqrt([1,4,9])
3097
- array([ 1., 2., 3.])
3098
-
3099
- >>> np.sqrt([4, -1, -3+4J])
3100
- array([ 2.+0.j, 0.+1.j, 1.+2.j])
3101
-
3102
- >>> np.sqrt([4, -1, numpy.inf])
3103
- array([ 2., NaN, Inf])
3104
-
3105
- """)
3106
-
3107
- add_newdoc('numpy.core.umath', 'square',
3108
- """
3109
- Return the element-wise square of the input.
3110
-
3111
- Parameters
3112
- ----------
3113
- x : array_like
3114
- Input data.
3115
-
3116
- Returns
3117
- -------
3118
- out : ndarray
3119
- Element-wise `x*x`, of the same shape and dtype as `x`.
3120
- Returns scalar if `x` is a scalar.
3121
-
3122
- See Also
3123
- --------
3124
- numpy.linalg.matrix_power
3125
- sqrt
3126
- power
3127
-
3128
- Examples
3129
- --------
3130
- >>> np.square([-1j, 1])
3131
- array([-1.-0.j, 1.+0.j])
3132
-
3133
- """)
3134
-
3135
- add_newdoc('numpy.core.umath', 'subtract',
3136
- """
3137
- Subtract arguments, element-wise.
3138
-
3139
- Parameters
3140
- ----------
3141
- x1, x2 : array_like
3142
- The arrays to be subtracted from each other.
3143
-
3144
- Returns
3145
- -------
3146
- y : ndarray
3147
- The difference of `x1` and `x2`, element-wise. Returns a scalar if
3148
- both `x1` and `x2` are scalars.
3149
-
3150
- Notes
3151
- -----
3152
- Equivalent to ``x1 - x2`` in terms of array broadcasting.
3153
-
3154
- Examples
3155
- --------
3156
- >>> np.subtract(1.0, 4.0)
3157
- -3.0
3158
-
3159
- >>> x1 = np.arange(9.0).reshape((3, 3))
3160
- >>> x2 = np.arange(3.0)
3161
- >>> np.subtract(x1, x2)
3162
- array([[ 0., 0., 0.],
3163
- [ 3., 3., 3.],
3164
- [ 6., 6., 6.]])
3165
-
3166
- """)
3167
-
3168
- add_newdoc('numpy.core.umath', 'tan',
3169
- """
3170
- Compute tangent element-wise.
3171
-
3172
- Equivalent to ``np.sin(x)/np.cos(x)`` element-wise.
3173
-
3174
- Parameters
3175
- ----------
3176
- x : array_like
3177
- Input array.
3178
- out : ndarray, optional
3179
- Output array of same shape as `x`.
3180
-
3181
- Returns
3182
- -------
3183
- y : ndarray
3184
- The corresponding tangent values.
3185
-
3186
- Raises
3187
- ------
3188
- ValueError: invalid return array shape
3189
- if `out` is provided and `out.shape` != `x.shape` (See Examples)
3190
-
3191
- Notes
3192
- -----
3193
- If `out` is provided, the function writes the result into it,
3194
- and returns a reference to `out`. (See Examples)
3195
-
3196
- References
3197
- ----------
3198
- M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions.
3199
- New York, NY: Dover, 1972.
3200
-
3201
- Examples
3202
- --------
3203
- >>> from math import pi
3204
- >>> np.tan(np.array([-pi,pi/2,pi]))
3205
- array([ 1.22460635e-16, 1.63317787e+16, -1.22460635e-16])
3206
- >>>
3207
- >>> # Example of providing the optional output parameter illustrating
3208
- >>> # that what is returned is a reference to said parameter
3209
- >>> out2 = np.cos([0.1], out1)
3210
- >>> out2 is out1
3211
- True
3212
- >>>
3213
- >>> # Example of ValueError due to provision of shape mis-matched `out`
3214
- >>> np.cos(np.zeros((3,3)),np.zeros((2,2)))
3215
- Traceback (most recent call last):
3216
- File "<stdin>", line 1, in <module>
3217
- ValueError: invalid return array shape
3218
-
3219
- """)
3220
-
3221
- add_newdoc('numpy.core.umath', 'tanh',
3222
- """
3223
- Compute hyperbolic tangent element-wise.
3224
-
3225
- Equivalent to ``np.sinh(x)/np.cosh(x)`` or ``-1j * np.tan(1j*x)``.
3226
-
3227
- Parameters
3228
- ----------
3229
- x : array_like
3230
- Input array.
3231
- out : ndarray, optional
3232
- Output array of same shape as `x`.
3233
-
3234
- Returns
3235
- -------
3236
- y : ndarray
3237
- The corresponding hyperbolic tangent values.
3238
-
3239
- Raises
3240
- ------
3241
- ValueError: invalid return array shape
3242
- if `out` is provided and `out.shape` != `x.shape` (See Examples)
3243
-
3244
- Notes
3245
- -----
3246
- If `out` is provided, the function writes the result into it,
3247
- and returns a reference to `out`. (See Examples)
3248
-
3249
- References
3250
- ----------
3251
- .. [1] M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions.
3252
- New York, NY: Dover, 1972, pg. 83.
3253
- http://www.math.sfu.ca/~cbm/aands/
3254
-
3255
- .. [2] Wikipedia, "Hyperbolic function",
3256
- http://en.wikipedia.org/wiki/Hyperbolic_function
3257
-
3258
- Examples
3259
- --------
3260
- >>> np.tanh((0, np.pi*1j, np.pi*1j/2))
3261
- array([ 0. +0.00000000e+00j, 0. -1.22460635e-16j, 0. +1.63317787e+16j])
3262
-
3263
- >>> # Example of providing the optional output parameter illustrating
3264
- >>> # that what is returned is a reference to said parameter
3265
- >>> out2 = np.tanh([0.1], out1)
3266
- >>> out2 is out1
3267
- True
3268
-
3269
- >>> # Example of ValueError due to provision of shape mis-matched `out`
3270
- >>> np.tanh(np.zeros((3,3)),np.zeros((2,2)))
3271
- Traceback (most recent call last):
3272
- File "<stdin>", line 1, in <module>
3273
- ValueError: invalid return array shape
3274
-
3275
- """)
3276
-
3277
- add_newdoc('numpy.core.umath', 'true_divide',
3278
- """
3279
- Returns a true division of the inputs, element-wise.
3280
-
3281
- Instead of the Python traditional 'floor division', this returns a true
3282
- division. True division adjusts the output type to present the best
3283
- answer, regardless of input types.
3284
-
3285
- Parameters
3286
- ----------
3287
- x1 : array_like
3288
- Dividend array.
3289
- x2 : array_like
3290
- Divisor array.
3291
-
3292
- Returns
3293
- -------
3294
- out : ndarray
3295
- Result is scalar if both inputs are scalar, ndarray otherwise.
3296
-
3297
- Notes
3298
- -----
3299
- The floor division operator ``//`` was added in Python 2.2 making
3300
- ``//`` and ``/`` equivalent operators. The default floor division
3301
- operation of ``/`` can be replaced by true division with ``from
3302
- __future__ import division``.
3303
-
3304
- In Python 3.0, ``//`` is the floor division operator and ``/`` the
3305
- true division operator. The ``true_divide(x1, x2)`` function is
3306
- equivalent to true division in Python.
3307
-
3308
- Examples
3309
- --------
3310
- >>> x = np.arange(5)
3311
- >>> np.true_divide(x, 4)
3312
- array([ 0. , 0.25, 0.5 , 0.75, 1. ])
3313
-
3314
- >>> x/4
3315
- array([0, 0, 0, 0, 1])
3316
- >>> x//4
3317
- array([0, 0, 0, 0, 1])
3318
-
3319
- >>> from __future__ import division
3320
- >>> x/4
3321
- array([ 0. , 0.25, 0.5 , 0.75, 1. ])
3322
- >>> x//4
3323
- array([0, 0, 0, 0, 1])
3324
-
3325
- """)
3326
-
3327
- # This doc is not currently used, but has been converted to a C string
3328
- # that can be found in numpy/core/src/umath/umathmodule.c where the
3329
- # frexp ufunc is constructed.
3330
- add_newdoc('numpy.core.umath', 'frexp',
3331
- """
3332
- Decompose the elements of x into mantissa and twos exponent.
3333
-
3334
- Returns (`mantissa`, `exponent`), where `x = mantissa * 2**exponent``.
3335
- The mantissa is lies in the open interval(-1, 1), while the twos
3336
- exponent is a signed integer.
3337
-
3338
- Parameters
3339
- ----------
3340
- x : array_like
3341
- Array of numbers to be decomposed.
3342
- out1: ndarray, optional
3343
- Output array for the mantissa. Must have the same shape as `x`.
3344
- out2: ndarray, optional
3345
- Output array for the exponent. Must have the same shape as `x`.
3346
-
3347
- Returns
3348
- -------
3349
- (mantissa, exponent) : tuple of ndarrays, (float, int)
3350
- `mantissa` is a float array with values between -1 and 1.
3351
- `exponent` is an int array which represents the exponent of 2.
3352
-
3353
- See Also
3354
- --------
3355
- ldexp : Compute ``y = x1 * 2**x2``, the inverse of `frexp`.
3356
-
3357
- Notes
3358
- -----
3359
- Complex dtypes are not supported, they will raise a TypeError.
3360
-
3361
- Examples
3362
- --------
3363
- >>> x = np.arange(9)
3364
- >>> y1, y2 = np.frexp(x)
3365
- >>> y1
3366
- array([ 0. , 0.5 , 0.5 , 0.75 , 0.5 , 0.625, 0.75 , 0.875,
3367
- 0.5 ])
3368
- >>> y2
3369
- array([0, 1, 2, 2, 3, 3, 3, 3, 4])
3370
- >>> y1 * 2**y2
3371
- array([ 0., 1., 2., 3., 4., 5., 6., 7., 8.])
3372
-
3373
- """)
3374
-
3375
- # This doc is not currently used, but has been converted to a C string
3376
- # that can be found in numpy/core/src/umath/umathmodule.c where the
3377
- # ldexp ufunc is constructed.
3378
- add_newdoc('numpy.core.umath', 'ldexp',
3379
- """
3380
- Returns x1 * 2**x2, element-wise.
3381
-
3382
- The mantissas `x1` and twos exponents `x2` are used to construct
3383
- floating point numbers ``x1 * 2**x2``.
3384
-
3385
- Parameters
3386
- ----------
3387
- x1 : array_like
3388
- Array of multipliers.
3389
- x2 : array_like, int
3390
- Array of twos exponents.
3391
- out : ndarray, optional
3392
- Output array for the result.
3393
-
3394
- Returns
3395
- -------
3396
- y : ndarray or scalar
3397
- The result of ``x1 * 2**x2``.
3398
-
3399
- See Also
3400
- --------
3401
- frexp : Return (y1, y2) from ``x = y1 * 2**y2``, inverse to `ldexp`.
3402
-
3403
- Notes
3404
- -----
3405
- Complex dtypes are not supported, they will raise a TypeError.
3406
-
3407
- `ldexp` is useful as the inverse of `frexp`, if used by itself it is
3408
- more clear to simply use the expression ``x1 * 2**x2``.
3409
-
3410
- Examples
3411
- --------
3412
- >>> np.ldexp(5, np.arange(4))
3413
- array([ 5., 10., 20., 40.], dtype=float32)
3414
-
3415
- >>> x = np.arange(6)
3416
- >>> np.ldexp(*np.frexp(x))
3417
- array([ 0., 1., 2., 3., 4., 5.])
3418
-
3419
- """)