__init__.pyi 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. from . import core, extras
  2. from .core import (
  3. MAError,
  4. MaskError,
  5. MaskType,
  6. MaskedArray,
  7. abs,
  8. absolute,
  9. add,
  10. all,
  11. allclose,
  12. allequal,
  13. alltrue,
  14. amax,
  15. amin,
  16. angle,
  17. anom,
  18. anomalies,
  19. any,
  20. append,
  21. arange,
  22. arccos,
  23. arccosh,
  24. arcsin,
  25. arcsinh,
  26. arctan,
  27. arctan2,
  28. arctanh,
  29. argmax,
  30. argmin,
  31. argsort,
  32. around,
  33. array,
  34. asanyarray,
  35. asarray,
  36. bool_,
  37. bitwise_and,
  38. bitwise_or,
  39. bitwise_xor,
  40. ceil,
  41. choose,
  42. clip,
  43. common_fill_value,
  44. compress,
  45. compressed,
  46. concatenate,
  47. conjugate,
  48. convolve,
  49. copy,
  50. correlate,
  51. cos,
  52. cosh,
  53. count,
  54. cumprod,
  55. cumsum,
  56. default_fill_value,
  57. diag,
  58. diagonal,
  59. diff,
  60. divide,
  61. empty,
  62. empty_like,
  63. equal,
  64. exp,
  65. expand_dims,
  66. fabs,
  67. filled,
  68. fix_invalid,
  69. flatten_mask,
  70. flatten_structured_array,
  71. floor,
  72. floor_divide,
  73. fmod,
  74. frombuffer,
  75. fromflex,
  76. fromfunction,
  77. getdata,
  78. getmask,
  79. getmaskarray,
  80. greater,
  81. greater_equal,
  82. harden_mask,
  83. hypot,
  84. identity,
  85. ids,
  86. indices,
  87. inner,
  88. innerproduct,
  89. isMA,
  90. isMaskedArray,
  91. is_mask,
  92. is_masked,
  93. isarray,
  94. left_shift,
  95. less,
  96. less_equal,
  97. log,
  98. log10,
  99. log2,
  100. logical_and,
  101. logical_not,
  102. logical_or,
  103. logical_xor,
  104. make_mask,
  105. make_mask_descr,
  106. make_mask_none,
  107. mask_or,
  108. masked,
  109. masked_array,
  110. masked_equal,
  111. masked_greater,
  112. masked_greater_equal,
  113. masked_inside,
  114. masked_invalid,
  115. masked_less,
  116. masked_less_equal,
  117. masked_not_equal,
  118. masked_object,
  119. masked_outside,
  120. masked_print_option,
  121. masked_singleton,
  122. masked_values,
  123. masked_where,
  124. max,
  125. maximum,
  126. maximum_fill_value,
  127. mean,
  128. min,
  129. minimum,
  130. minimum_fill_value,
  131. mod,
  132. multiply,
  133. mvoid,
  134. ndim,
  135. negative,
  136. nomask,
  137. nonzero,
  138. not_equal,
  139. ones,
  140. ones_like,
  141. outer,
  142. outerproduct,
  143. power,
  144. prod,
  145. product,
  146. ptp,
  147. put,
  148. putmask,
  149. ravel,
  150. remainder,
  151. repeat,
  152. reshape,
  153. resize,
  154. right_shift,
  155. round,
  156. round_,
  157. set_fill_value,
  158. shape,
  159. sin,
  160. sinh,
  161. size,
  162. soften_mask,
  163. sometrue,
  164. sort,
  165. sqrt,
  166. squeeze,
  167. std,
  168. subtract,
  169. sum,
  170. swapaxes,
  171. take,
  172. tan,
  173. tanh,
  174. trace,
  175. transpose,
  176. true_divide,
  177. var,
  178. where,
  179. zeros,
  180. zeros_like,
  181. )
  182. from .extras import (
  183. apply_along_axis,
  184. apply_over_axes,
  185. atleast_1d,
  186. atleast_2d,
  187. atleast_3d,
  188. average,
  189. clump_masked,
  190. clump_unmasked,
  191. column_stack,
  192. compress_cols,
  193. compress_nd,
  194. compress_rowcols,
  195. compress_rows,
  196. count_masked,
  197. corrcoef,
  198. cov,
  199. diagflat,
  200. dot,
  201. dstack,
  202. ediff1d,
  203. flatnotmasked_contiguous,
  204. flatnotmasked_edges,
  205. hsplit,
  206. hstack,
  207. isin,
  208. in1d,
  209. intersect1d,
  210. mask_cols,
  211. mask_rowcols,
  212. mask_rows,
  213. masked_all,
  214. masked_all_like,
  215. median,
  216. mr_,
  217. ndenumerate,
  218. notmasked_contiguous,
  219. notmasked_edges,
  220. polyfit,
  221. row_stack,
  222. setdiff1d,
  223. setxor1d,
  224. stack,
  225. unique,
  226. union1d,
  227. vander,
  228. vstack,
  229. )
  230. __all__ = [
  231. "core",
  232. "extras",
  233. "MAError",
  234. "MaskError",
  235. "MaskType",
  236. "MaskedArray",
  237. "abs",
  238. "absolute",
  239. "add",
  240. "all",
  241. "allclose",
  242. "allequal",
  243. "alltrue",
  244. "amax",
  245. "amin",
  246. "angle",
  247. "anom",
  248. "anomalies",
  249. "any",
  250. "append",
  251. "arange",
  252. "arccos",
  253. "arccosh",
  254. "arcsin",
  255. "arcsinh",
  256. "arctan",
  257. "arctan2",
  258. "arctanh",
  259. "argmax",
  260. "argmin",
  261. "argsort",
  262. "around",
  263. "array",
  264. "asanyarray",
  265. "asarray",
  266. "bitwise_and",
  267. "bitwise_or",
  268. "bitwise_xor",
  269. "bool_",
  270. "ceil",
  271. "choose",
  272. "clip",
  273. "common_fill_value",
  274. "compress",
  275. "compressed",
  276. "concatenate",
  277. "conjugate",
  278. "convolve",
  279. "copy",
  280. "correlate",
  281. "cos",
  282. "cosh",
  283. "count",
  284. "cumprod",
  285. "cumsum",
  286. "default_fill_value",
  287. "diag",
  288. "diagonal",
  289. "diff",
  290. "divide",
  291. "empty",
  292. "empty_like",
  293. "equal",
  294. "exp",
  295. "expand_dims",
  296. "fabs",
  297. "filled",
  298. "fix_invalid",
  299. "flatten_mask",
  300. "flatten_structured_array",
  301. "floor",
  302. "floor_divide",
  303. "fmod",
  304. "frombuffer",
  305. "fromflex",
  306. "fromfunction",
  307. "getdata",
  308. "getmask",
  309. "getmaskarray",
  310. "greater",
  311. "greater_equal",
  312. "harden_mask",
  313. "hypot",
  314. "identity",
  315. "ids",
  316. "indices",
  317. "inner",
  318. "innerproduct",
  319. "isMA",
  320. "isMaskedArray",
  321. "is_mask",
  322. "is_masked",
  323. "isarray",
  324. "left_shift",
  325. "less",
  326. "less_equal",
  327. "log",
  328. "log10",
  329. "log2",
  330. "logical_and",
  331. "logical_not",
  332. "logical_or",
  333. "logical_xor",
  334. "make_mask",
  335. "make_mask_descr",
  336. "make_mask_none",
  337. "mask_or",
  338. "masked",
  339. "masked_array",
  340. "masked_equal",
  341. "masked_greater",
  342. "masked_greater_equal",
  343. "masked_inside",
  344. "masked_invalid",
  345. "masked_less",
  346. "masked_less_equal",
  347. "masked_not_equal",
  348. "masked_object",
  349. "masked_outside",
  350. "masked_print_option",
  351. "masked_singleton",
  352. "masked_values",
  353. "masked_where",
  354. "max",
  355. "maximum",
  356. "maximum_fill_value",
  357. "mean",
  358. "min",
  359. "minimum",
  360. "minimum_fill_value",
  361. "mod",
  362. "multiply",
  363. "mvoid",
  364. "ndim",
  365. "negative",
  366. "nomask",
  367. "nonzero",
  368. "not_equal",
  369. "ones",
  370. "ones_like",
  371. "outer",
  372. "outerproduct",
  373. "power",
  374. "prod",
  375. "product",
  376. "ptp",
  377. "put",
  378. "putmask",
  379. "ravel",
  380. "remainder",
  381. "repeat",
  382. "reshape",
  383. "resize",
  384. "right_shift",
  385. "round",
  386. "round_",
  387. "set_fill_value",
  388. "shape",
  389. "sin",
  390. "sinh",
  391. "size",
  392. "soften_mask",
  393. "sometrue",
  394. "sort",
  395. "sqrt",
  396. "squeeze",
  397. "std",
  398. "subtract",
  399. "sum",
  400. "swapaxes",
  401. "take",
  402. "tan",
  403. "tanh",
  404. "trace",
  405. "transpose",
  406. "true_divide",
  407. "var",
  408. "where",
  409. "zeros",
  410. "zeros_like",
  411. "apply_along_axis",
  412. "apply_over_axes",
  413. "atleast_1d",
  414. "atleast_2d",
  415. "atleast_3d",
  416. "average",
  417. "clump_masked",
  418. "clump_unmasked",
  419. "column_stack",
  420. "compress_cols",
  421. "compress_nd",
  422. "compress_rowcols",
  423. "compress_rows",
  424. "count_masked",
  425. "corrcoef",
  426. "cov",
  427. "diagflat",
  428. "dot",
  429. "dstack",
  430. "ediff1d",
  431. "flatnotmasked_contiguous",
  432. "flatnotmasked_edges",
  433. "hsplit",
  434. "hstack",
  435. "isin",
  436. "in1d",
  437. "intersect1d",
  438. "mask_cols",
  439. "mask_rowcols",
  440. "mask_rows",
  441. "masked_all",
  442. "masked_all_like",
  443. "median",
  444. "mr_",
  445. "ndenumerate",
  446. "notmasked_contiguous",
  447. "notmasked_edges",
  448. "polyfit",
  449. "row_stack",
  450. "setdiff1d",
  451. "setxor1d",
  452. "stack",
  453. "unique",
  454. "union1d",
  455. "vander",
  456. "vstack",
  457. ]