umath.pyi 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. from numpy import (
  2. absolute,
  3. add,
  4. arccos,
  5. arccosh,
  6. arcsin,
  7. arcsinh,
  8. arctan,
  9. arctan2,
  10. arctanh,
  11. bitwise_and,
  12. bitwise_count,
  13. bitwise_or,
  14. bitwise_xor,
  15. cbrt,
  16. ceil,
  17. conj,
  18. conjugate,
  19. copysign,
  20. cos,
  21. cosh,
  22. deg2rad,
  23. degrees,
  24. divide,
  25. divmod,
  26. e,
  27. equal,
  28. euler_gamma,
  29. exp,
  30. exp2,
  31. expm1,
  32. fabs,
  33. float_power,
  34. floor,
  35. floor_divide,
  36. fmax,
  37. fmin,
  38. fmod,
  39. frexp,
  40. frompyfunc,
  41. gcd,
  42. greater,
  43. greater_equal,
  44. heaviside,
  45. hypot,
  46. invert,
  47. isfinite,
  48. isinf,
  49. isnan,
  50. isnat,
  51. lcm,
  52. ldexp,
  53. left_shift,
  54. less,
  55. less_equal,
  56. log,
  57. log1p,
  58. log2,
  59. log10,
  60. logaddexp,
  61. logaddexp2,
  62. logical_and,
  63. logical_not,
  64. logical_or,
  65. logical_xor,
  66. matvec,
  67. maximum,
  68. minimum,
  69. mod,
  70. modf,
  71. multiply,
  72. negative,
  73. nextafter,
  74. not_equal,
  75. pi,
  76. positive,
  77. power,
  78. rad2deg,
  79. radians,
  80. reciprocal,
  81. remainder,
  82. right_shift,
  83. rint,
  84. sign,
  85. signbit,
  86. sin,
  87. sinh,
  88. spacing,
  89. sqrt,
  90. square,
  91. subtract,
  92. tan,
  93. tanh,
  94. true_divide,
  95. trunc,
  96. vecdot,
  97. vecmat,
  98. )
  99. __all__ = [
  100. "absolute",
  101. "add",
  102. "arccos",
  103. "arccosh",
  104. "arcsin",
  105. "arcsinh",
  106. "arctan",
  107. "arctan2",
  108. "arctanh",
  109. "bitwise_and",
  110. "bitwise_count",
  111. "bitwise_or",
  112. "bitwise_xor",
  113. "cbrt",
  114. "ceil",
  115. "conj",
  116. "conjugate",
  117. "copysign",
  118. "cos",
  119. "cosh",
  120. "deg2rad",
  121. "degrees",
  122. "divide",
  123. "divmod",
  124. "e",
  125. "equal",
  126. "euler_gamma",
  127. "exp",
  128. "exp2",
  129. "expm1",
  130. "fabs",
  131. "float_power",
  132. "floor",
  133. "floor_divide",
  134. "fmax",
  135. "fmin",
  136. "fmod",
  137. "frexp",
  138. "frompyfunc",
  139. "gcd",
  140. "greater",
  141. "greater_equal",
  142. "heaviside",
  143. "hypot",
  144. "invert",
  145. "isfinite",
  146. "isinf",
  147. "isnan",
  148. "isnat",
  149. "lcm",
  150. "ldexp",
  151. "left_shift",
  152. "less",
  153. "less_equal",
  154. "log",
  155. "log1p",
  156. "log2",
  157. "log10",
  158. "logaddexp",
  159. "logaddexp2",
  160. "logical_and",
  161. "logical_not",
  162. "logical_or",
  163. "logical_xor",
  164. "matvec",
  165. "maximum",
  166. "minimum",
  167. "mod",
  168. "modf",
  169. "multiply",
  170. "negative",
  171. "nextafter",
  172. "not_equal",
  173. "pi",
  174. "positive",
  175. "power",
  176. "rad2deg",
  177. "radians",
  178. "reciprocal",
  179. "remainder",
  180. "right_shift",
  181. "rint",
  182. "sign",
  183. "signbit",
  184. "sin",
  185. "sinh",
  186. "spacing",
  187. "sqrt",
  188. "square",
  189. "subtract",
  190. "tan",
  191. "tanh",
  192. "true_divide",
  193. "trunc",
  194. "vecdot",
  195. "vecmat",
  196. ]