PyPyNum 1.17.0__py3-none-any.whl → 1.17.2__py3-none-any.whl

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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyPyNum
3
- Version: 1.17.0
4
- Summary: PyPyNum is a Python library for math & science computations, covering algebra, calculus, stats, with data structures like matrices, vectors, tensors. It offers numerical tools, programs, and supports computational ops, functions, processing, simulation, & visualization in data science & ML, crucial for research, engineering, & data processing.
3
+ Version: 1.17.2
4
+ Summary: PyPyNum is a multifunctional Python math lib. It includes modules for math, data analysis, array ops, crypto, physics, randomness, data prep, stats, solving eqns, image processing, interp, matrix calc, and high-precision math. Designed for scientific computing, data science, and machine learning, PyPyNum provides efficient and versatile tools.
5
5
  Home-page: https://github.com/PythonSJL/PyPyNum
6
6
  Author: Shen Jiayi
7
7
  Author-email: 2261748025@qq.com
@@ -671,12 +671,11 @@ Keywords: math,数学,mathematics,数学计算,numerical,数值,computation,计
671
671
  Requires-Python: >=3.4
672
672
  Description-Content-Type: text/markdown
673
673
 
674
- # <font color = blue>PyPyNum</font>
674
+ # PyPyNum
675
675
 
676
- <font color = gree>PyPyNum is a Python library for math & science computations, covering algebra, calculus, stats, with
677
- data structures like matrices, vectors, tensors. It offers numerical tools, programs, and supports computational ops,
678
- functions, processing, simulation, & visualization in data science & ML, crucial for research, engineering, & data
679
- processing.</font><font color = red>[Python>=3.4]</font>
676
+ PyPyNum is a multifunctional Python math lib. It includes modules for math, data analysis, array ops, crypto, physics,
677
+ randomness, data prep, stats, solving eqns, image processing, interp, matrix calc, and high-precision math. Designed for
678
+ scientific computing, data science, and machine learning, PyPyNum provides efficient and versatile tools.
680
679
 
681
680
  ```
682
681
  ________ ___ ___ ________ ___ ___ ________ ___ ___ _____ ______
@@ -693,7 +692,7 @@ processing.</font><font color = red>[Python>=3.4]</font>
693
692
  [![Downloads](https://static.pepy.tech/badge/pypynum/month)](https://pepy.tech/project/pypynum)
694
693
  [![Downloads](https://static.pepy.tech/badge/pypynum/week)](https://pepy.tech/project/pypynum)
695
694
 
696
- ## Version -> 1.17.0 | PyPI -> https://pypi.org/project/PyPyNum/ | Gitee -> https://www.gitee.com/PythonSJL/PyPyNum | GitHub -> https://github.com/PythonSJL/PyPyNum
695
+ ## Version -> 1.17.2 | PyPI -> https://pypi.org/project/PyPyNum/ | Gitee -> https://www.gitee.com/PythonSJL/PyPyNum | GitHub -> https://github.com/PythonSJL/PyPyNum
697
696
 
698
697
  ![LOGO](PyPyNum.png)
699
698
 
@@ -825,138 +824,51 @@ Python interpreter and run it!
825
824
  ```
826
825
  !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
827
826
 
828
- The current version has correctly implemented the SVD function
829
- for matrix singular value decomposition
830
-
831
- The functions "lower_gamma" and "upper_gamma" have been renamed
832
- to "lowergamma" and "uppergamma", respectively
833
-
834
- Rename the submodule "quats" to "hypcmpnms" which means
835
- "hypercomplex numbers"
836
-
837
- Fixed calculation errors that existed before the quaternion
838
- class
839
-
840
- Fixed the issue caused by name change in the "pprint_matrix"
841
- function
842
-
843
- (Of course, other features have also undergone minor
844
- modifications, and the effect may differ from previous versions)
845
-
846
- !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
847
-
848
- The following are newly added functions or classes:
849
-
850
- (These functions have been tested multiple times and no issues
851
- have been found so far. If there are any problems, please
852
- contact me promptly.)
853
-
854
- !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
855
-
856
- Octonion(s: typing.Union[int, float], t: typing.Union[int,
857
- float], u: typing.Union[int, float], v: typing.Union[int,
858
- float], w: typing.Union[int, float], x: typing.Union[int,
859
- float], y: typing.Union[int, float], z: typing.Union[int,
860
- float])
861
-
862
- This is an octonion class, with many operational functions for
863
- octonions. Octonions are an eight-dimensional extension of
864
- complex numbers, initially introduced by John T. Graves in 1843.
865
- Characterized by their non-associative nature, they consist of
866
- seven imaginary units, denoted as i, j, k, l, m, n, and o. These
867
- entities are applied in physics and computer graphics, albeit
868
- their non-associativity constraint hinders their extensive
869
- computational utilization.
870
-
871
- Example:
872
-
873
- o = Octonion(1, 2, 3, 4, 5, 6, 7, 8)
874
- o = (1+2i+3j+4k+5l+6m+7n+8o)
875
- o * o = (-202+4i+6j+8k+10l+12m+14n+16o)
876
- round(o.inverse(), 6) = (0.004902-0.009804i-0.014706j-0.019608k-0.02451l-0.029412m-0.034314n-0.039216o)
877
- round(o * o.inverse(), 16) = (1.0+0.0i+0.0j+0.0k+0.0l+0.0m+0.0n-0.0o)
878
- round(o / o, 16) = (1.0+0.0i+0.0j+0.0k+0.0l+0.0m+0.0n-0.0o)
879
-
880
- Provides a good function `octo` for creating Octonion classes.
881
-
882
- octo(s: real = 0, t: real = 0, u: real = 0, v: real = 0, w: real
883
- = 0, x: real = 0, y: real = 0, z: real = 0) -> Octonion
827
+ Fixed some known issues.
884
828
 
885
829
  !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
886
830
 
887
- diag_indices(n: <class 'int'>, k: <class 'int'>, m: <class
888
- 'int'>) -> <class 'tuple'>
889
-
890
- This function computes the indices for the k-th diagonal in an n
891
- x m matrix. It returns a tuple of two tuples, each containing a
892
- sequence of integers representing the row and column indices,
893
- respectively, for the k-th diagonal in the matrix. The first
894
- tuple corresponds to the row indices, and the second to the
895
- column indices. The value of k indicates the diagonal: k=0 for
896
- the main diagonal, k>0 for diagonals above the main diagonal,
897
- and k<0 for diagonals below.
898
-
899
- diag(v: typing.Any, k: <class 'int'>, n: <class 'int'>, m:
900
- <class 'int'>) -> typing.Any
901
-
902
- This function performs dual operations similar to the NumPy
903
- `diag` function: 1. When `v` is a sequence, it constructs a
904
- diagonal matrix by placing the elements of `v` on the k-th
905
- diagonal. 2. When `v` is a matrix, it extracts the elements from
906
- the k-th diagonal and returns them as a 1D sequence. The
907
- argument `k` specifies the diagonal to be operated on, where k=0
908
- refers to the main diagonal, k>0 identifies diagonals above the
909
- main, and k<0 identifies diagonals below the main diagonal.
910
-
911
- !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
912
-
913
- damerau(x: typing.Union[list, tuple, str], y: typing.Union[list,
914
- tuple, str]) -> <class 'int'>
915
-
916
- Calculate the Damerau-Levenshtein
917
- distance between two sequences. The Damerau-Levenshtein distance
918
- is a measure of the difference between two sequences. It is an
919
- extension of the Levenshtein distance that allows transpositions
920
- (i.e., swapping two adjacent characters) to be considered as a
921
- single edit operation. This function supports any type of
922
- iterable sequences, such as strings, lists, or tuples.
923
- Example:
924
- >>> damerau("ensure", "nester")
925
- 3
926
-
927
- strip_helper(sequence: typing.Any, keys_set: <class 'set'>,
928
- strip_start: <class 'bool'>, strip_end: <class 'bool'>) ->
929
- typing.Any
930
-
931
- Removes elements from the start and/or
932
- end of a sequence that match the specified keys.
933
- Example:
934
- >>> strip_helper([1, 2, 3, 4, 5, 1, 2], {1, 2}, True, True)
935
- [3, 4, 5]
936
-
937
- strip(sequence: typing.Any, keys: typing.Any) -> typing.Any
938
-
939
- Removes elements from both the start and
940
- end of a sequence that match the specified keys.
941
- Example:
942
- >>> strip([1, 2, 3, 4, 5, 1, 2], [1, 2])
943
- [3, 4, 5]
944
-
945
- lstrip(sequence: typing.Any, keys: typing.Any) -> typing.Any
946
-
947
- Removes elements from the start of a
948
- sequence that match the specified keys.
949
- Example:
950
- >>> lstrip([1, 2, 3, 4, 5, 1, 2], [1, 2])
951
- [3, 4, 5, 1, 2]
952
-
953
- rstrip(sequence: typing.Any, keys: typing.Any) -> typing.Any
954
-
955
- Removes elements from the end of a
956
- sequence that match the specified keys.
957
- Example:
958
- >>> rstrip([1, 2, 3, 4, 5, 1, 2], [1, 2])
959
- [1, 2, 3, 4, 5]
831
+ The pypynum.utils module has recently introduced a new class
832
+ called RadixInt. This class is designed to facilitate the
833
+ representation and manipulation of integers in various bases,
834
+ ranging from base 2 to base 36.
835
+
836
+ The RadixInt class within the pypynum.utils module provides a
837
+ robust way to work with integers in custom bases. It allows
838
+ users to initialize instances with either a decimal number or a
839
+ string representation of a number in the desired base. The class
840
+ supports conversion between different bases, as well as basic
841
+ arithmetic operations that can be performed on integers
842
+ represented in various bases.
843
+
844
+
845
+ <<< The following are some usage examples >>>
846
+
847
+
848
+ from pypynum import RadixInt
849
+
850
+ # Base-2 and base-10 numbers
851
+ binary_num = RadixInt("1010", 2)
852
+ decimal_num = RadixInt(10, 10)
853
+ print(binary_num) # Output: (1010)_{2}
854
+ print(decimal_num) # Output: (10)_{10}
855
+ binary_to_octal = RadixInt("1010", 2).to_base(8)
856
+ print(binary_to_octal) # Output: (12)_{8}
857
+ # Addition
858
+ result_add = binary_num + decimal_num
859
+ print(result_add) # Output: (20)_{10}
860
+ # Base-8 and base-10 numbers
861
+ octal_num = RadixInt("123", 8)
862
+ decimal_num = RadixInt(5, 10)
863
+ # Subtraction
864
+ result_sub = octal_num - decimal_num
865
+ print(result_sub) # Output: (78)_{10}
866
+ # Base-16 and base-2 numbers
867
+ hex_num = RadixInt("1A", 16)
868
+ binary_num = RadixInt("11", 2)
869
+ # Multiplication
870
+ result_mul = hex_num * binary_num
871
+ print(result_mul) # Output: (78)_{10}
960
872
 
961
873
  !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
962
874
  ```
@@ -994,7 +906,7 @@ PyPyNum
994
906
  │ ├── asarray(data: Any) -> Any
995
907
  │ ├── aslist(data: Any) -> Any
996
908
  │ ├── boolarray(data: Any) -> Any
997
- │ ├── fill(shape: typing.Union[list, tuple], sequence: typing.Union[list, tuple], repeat: bool, pad: typing.Any, rtype: typing.Callable) -> typing.Any
909
+ │ ├── fill(shape: typing.Union[list, tuple], sequence: typing.Union[list, tuple, str], repeat: bool, pad: typing.Any, rtype: typing.Callable) -> typing.Any
998
910
  │ ├── full(shape: typing.Union[list, tuple], fill_value: typing.Any, rtype: typing.Callable) -> typing.Any
999
911
  │ ├── full_like(a: typing.Any, fill_value: typing.Any, rtype: typing.Callable) -> typing.Any
1000
912
  │ ├── get_shape(data: Any) -> Any
@@ -1131,7 +1043,9 @@ PyPyNum
1131
1043
  │ └── quat(w: typing.Union[int, float], x: typing.Union[int, float], y: typing.Union[int, float], z: typing.Union[int, float]) -> pypynum.hypcmpnms.Quaternion
1132
1044
  ├── images
1133
1045
  │ ├── CLASS
1134
- │ │ └── PNG(object)/__init__(self: Any) -> None
1046
+ │ │ ├── BMP(pypynum.images.BaseImage)/__init__(self: Any) -> None
1047
+ │ │ ├── BaseImage(object)/__init__(self: Any) -> None
1048
+ │ │ └── PNG(pypynum.images.BaseImage)/__init__(self: Any) -> None
1135
1049
  │ └── FUNCTION
1136
1050
  │ └── crc(data: Any, length: Any, init: Any, xor: Any) -> Any
1137
1051
  ├── interp
@@ -1674,7 +1588,7 @@ PyPyNum
1674
1588
  ### Code Testing
1675
1589
 
1676
1590
  ```python
1677
- from pypynum import (arrays, geoms, hypcmpnms, logics, matrices, symbols, tensors, vectors,
1591
+ from pypynum import (arrays, geoms, hypcmpnms, logics, matrices, multiprec, special, vectors,
1678
1592
  ciphers, consts, equations, maths, plotting, random, regs, tools)
1679
1593
 
1680
1594
  ...
@@ -1765,48 +1679,46 @@ print(m1.rank())
1765
1679
  2
1766
1680
  """
1767
1681
 
1768
- print(symbols.BASIC)
1769
- print(symbols.ENGLISH)
1770
- print(symbols.GREEK)
1771
- print(symbols.parse_expr("-(10+a-(3.14+b0)*(-5))**(-ζn1-2.718/mΣ99)//9"))
1682
+ mp_complex1 = multiprec.MPComplex("1.4142135623730950488016887242096980785696718753769",
1683
+ "2.7182818284590452353602874713527", sigfigs=30)
1684
+ mp_complex2 = multiprec.MPComplex("1.7320508075688772935274463415059",
1685
+ "3.141592653589793238462643383279502884197169399375105820974944", sigfigs=40)
1686
+ modulus = mp_complex1.modulus(sigfigs=25)
1687
+ print("Modulus of the complex1:", modulus)
1688
+ sqrt_complex = mp_complex2.sqrt()
1689
+ print("Square root of the complex2:", sqrt_complex)
1690
+ power_result = mp_complex1 ** mp_complex2
1691
+ print("Power of complex1 raised to complex2:", power_result)
1692
+ euler_gamma = multiprec.mp_euler_gamma(sigfigs=45)
1693
+ print("Value of Euler's gamma constant:", euler_gamma)
1694
+ log_2 = multiprec.mp_log(2, 10, sigfigs=50)
1695
+ print("Logarithm of 2 (base 10):", log_2)
1696
+ exp_e_squared = multiprec.mp_exp(multiprec.mp_e() ** 2, sigfigs=20)
1697
+ print("Value of exp(e^2):", exp_e_squared)
1772
1698
 
1773
1699
  """
1774
- %()*+-./0123456789
1775
- ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
1776
- C:\Users\Administrator\PycharmProjects\pythonProject\pypynum\tensors.py:16: FutureWarning: The 'Tensor' class is deprecated and will be removed in a future version. Please use the 'Array' class instead for similar functionality.
1777
- warn("The 'Tensor' class is deprecated and will be removed in a future version. "
1778
- ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρστυφχψω
1779
- [['10', '+', 'a', '-', ['3.14', '+', 'b0'], '*', '-5'], '**', ['-ζn1', '-', '2.718', '/', 'mΣ99'], '//', '9']
1700
+ Modulus of the complex1: 3.064156670102011971734464
1701
+ Square root of the complex2: 1.630869996965458756791024890326755654659+0.9631646481434200567938527724670041364524i
1702
+ Power of complex1 raised to complex2: 0.144632311554759549910373681031-0.17337039786352194417298867399i
1703
+ Value of Euler's gamma constant: 0.577215664901532860606512090082402431042159336
1704
+ Logarithm of 2 (base 10): 0.30102999566398119521373889472449302676818988146211
1705
+ Value of exp(e^2): 1618.1779919126535017
1780
1706
  """
1781
1707
 
1782
- t0 = tensors.ten([[[1, 2], [3, 4]], [[5, 6], [7, 8]]])
1783
- t1 = tensors.ten([[[9, 10], [11, 12]], [[13, 14], [15, 16]]])
1784
- print(t0)
1785
- print(t1)
1786
- print(t0 + t1)
1787
- print(t0 @ t1)
1708
+ print("Bessel Function of the first kind, order 0 at x=1:", special.besselj0(1))
1709
+ print("Modified Bessel function of the first kind, order 1 at x=1:", special.besseli1(1))
1710
+ print("Hypergeometric function 0F1 at z=0.5 with b0=1:", special.hyp0f1(1, 0.5))
1711
+ print("Hypergeometric function 1F1 at z=1 with a0=1, b0=1:", special.hyp1f1(1, 1, 1))
1712
+ print("q-Pochhammer Symbol with a=2+1j, q=0.5+0.1j, n=2+1j:", special.qpochhammer(2 + 1j, 0.5 + 0.1j, 2 + 1j))
1713
+ print("q-Gamma Function at n=2 with q=0.5+0.1j:", special.qgamma(2, 0.5 + 0.1j))
1788
1714
 
1789
1715
  """
1790
- [[[1 2]
1791
- [3 4]]
1792
-
1793
- [[5 6]
1794
- [7 8]]]
1795
- [[[ 9 10]
1796
- [11 12]]
1797
-
1798
- [[13 14]
1799
- [15 16]]]
1800
- [[[10 12]
1801
- [14 16]]
1802
-
1803
- [[18 20]
1804
- [22 24]]]
1805
- [[[ 31 34]
1806
- [ 71 78]]
1807
-
1808
- [[155 166]
1809
- [211 226]]]
1716
+ Bessel Function of the first kind, order 0 at x=1: 0.7651976865579666
1717
+ Modified Bessel function of the first kind, order 1 at x=1: 0.565159103992485
1718
+ Hypergeometric function 0F1 at z=0.5 with b0=1: 1.5660829297563503
1719
+ Hypergeometric function 1F1 at z=1 with a0=1, b0=1: 2.7182818284590455
1720
+ q-Pochhammer Symbol with a=2+1j, q=0.5+0.1j, n=2+1j: (-0.33353429405776575+1.8573191887407854j)
1721
+ q-Gamma Function at n=2 with q=0.5+0.1j: (0.9999999999999989-4.953510875709033e-16j)
1810
1722
  """
1811
1723
 
1812
1724
  string = "PyPyNum"
@@ -1983,10 +1895,10 @@ print(random.randint(0, 9, [2, 3, 4]))
1983
1895
  print(random.uniform(0, 9, [2, 3, 4]))
1984
1896
 
1985
1897
  """
1986
- [[[0.4847228830212484, 0.21191111573518406, 0.5373857787327614, -0.8093138913140422], [-0.7011162169944548, -0.9912705888373583, 0.7186439322555127, -0.2274581920158257], [1.3914572485772865, 0.7075164958432888, 0.7592813432866642, 0.035360908326509295]], [[-0.015103635361811502, 0.2260790803894067, -0.0479692229109478, -0.18601862902940933], [1.2607730202510887, -1.3885699518983425, 0.6662735518373, 0.31158223208478136], [-0.6163262301739749, 0.45335816472937096, -0.3099931166324452, 0.33766139602898054]]]
1987
- [[[0.9908387599158799, 0.21201658430651493, 0.9437298457409969, 0.05879243950811597], [0.5031188669965702, 0.4848728511699505, 0.01579620200535503, 0.45437774795329555], [0.25978581761821773, 0.8368846886830117, 0.305587930563909, 0.25483467458201103]], [[0.9555384002609535, 0.4956682731616203, 0.2577575820069856, 0.42012684095465547], [0.7236210201681477, 0.20749387839946765, 0.41822591597474046, 0.3049876771209371], [0.5482188347875343, 0.9725069497850535, 0.0009136275067901378, 0.6566715689489501]]]
1988
- [[[0, 8, 3, 1], [0, 8, 6, 8], [6, 0, 4, 6]], [[3, 0, 3, 5], [7, 1, 4, 4], [6, 5, 6, 7]]]
1989
- [[[0.5283612378290214, 7.262524059790431, 7.772626276903747, 5.054257930459873], [4.346895596478688, 4.245631516109806, 1.4873778244242264, 0.21200334989526515], [5.560169637820303, 7.944316673669743, 1.142117411431089, 4.0928173218897665]], [[1.5511337413790796, 3.9871009562400013, 6.859553134546862, 6.823314677935608], [6.528323813176091, 2.1511397393620104, 2.207094001588672, 7.546888086887966], [8.716377217873646, 5.754127816115938, 8.725415670845436, 8.033482314572911]]]
1898
+ [[[0.19564108603837504, 1.01920370166293, -0.0432622197313817, 1.8767392228517594], [-0.9372140720220945, 0.6455939848661518, 0.06219926062283103, -0.03646501719525719], [-0.6575861228704779, -1.627831653990843, 1.4669927522358261, -2.1082184047042944]], [[-0.4550416369776341, 0.5921202822490813, 0.1393176939653395, -0.1994214479986489], [-0.559257919413219, -1.629764620332396, 0.04658277611512766, 0.20529751771180757], [0.492656546311569, 0.9731757491363898, -0.3281597719355017, -0.6855996837842998]]]
1899
+ [[[0.9897608447208633, 0.9091539554606014, 0.839742901348473, 0.7483640950392159], [0.1271954637618754, 0.23914774960655272, 0.6603167703557995, 0.09706202212722614], [0.1020987366479954, 0.16628877700140854, 0.9844464087410161, 0.8213963537473721]], [[0.268434775377716, 0.8021623176316018, 0.48319517625501174, 0.30410149780944096], [0.8970313978138931, 0.9980790184879383, 0.1185467392465952, 0.19570961919567464], [0.08626090792820118, 0.5790211560246683, 0.7475290741004703, 0.8048613204213184]]]
1900
+ [[[9, 0, 7, 5], [2, 7, 3, 5], [7, 6, 4, 2]], [[3, 4, 2, 0], [4, 2, 2, 1], [4, 5, 4, 9]]]
1901
+ [[[8.067902792666303, 3.1398970785364244, 7.875028237778611, 7.766921948037462], [3.337337214716076, 2.852783099370506, 1.028257336777862, 7.822605535085232], [7.111199916783942, 5.890725764603359, 3.038605829888671, 6.272148674191553]], [[1.076715403659712, 6.806086377982102, 5.699002266942416, 1.1654651363361368], [1.3920577362733448, 8.527352563852686, 2.359964996027981, 5.183071574749471], [7.8250627862940725, 1.6259461468536924, 8.333173856724002, 5.068032713313034]]]
1990
1902
  """
1991
1903
 
1992
1904
  print(regs.lin_reg(list(range(5)), [2, 4, 6, 7, 8]))
@@ -1,29 +1,29 @@
1
1
  pypynum/PyPyNum.png,sha256=t96tJPWfHxT8kcXm_qZI2z5W36TgOqjCU9qdgbmlFws,11623
2
- pypynum/README.md,sha256=7Sos81r7HyJ83quaYV85tr0r06Bg_dtq8PDhKPEim60,92151
3
- pypynum/__init__.py,sha256=YbZkgWeT03xgjORkMP1JQJzRrmwqAaOAbkZHxxxqxUg,2695
4
- pypynum/arrays.py,sha256=81dlyUn1xNs1f4enpfQjXEJurjEMfQqaQMfMC3quR8U,15793
5
- pypynum/chars.py,sha256=HIqTmWl58GypJgVIlgSFVc2icI01NczfbRyu5QmuHz0,2178
6
- pypynum/ciphers.py,sha256=kC7wZk3FF-MCCvn2-1YxiaRa4ImDKxyyihJYc6Dyf5E,10008
2
+ pypynum/README.md,sha256=YHKUWtrjrJBZ7ISDWDRhpBy_elhs8Elgi-gFYDhy-6Y,90096
3
+ pypynum/__init__.py,sha256=xw3tckSnV25vDoYiqde6Veegp1jVBSeJHoQfkAvt0IM,2711
4
+ pypynum/arrays.py,sha256=R4XrbBZJT7MumynbJDE5IDBe-3o9W89Rm556RzhkC6E,15798
5
+ pypynum/chars.py,sha256=uw9YJJNKHDCD1x155GzQ3uVbIfyAAm4wrpXDkGxvb8A,2178
6
+ pypynum/ciphers.py,sha256=xWYgCWoCUnrDz_2nKbqzvjtZ3pfVWsRxjhePs8ZPdBI,10043
7
7
  pypynum/consts.py,sha256=enetPwJevWgYXuGEasAb-tXMHpvL2xWKUe-B1gTwInk,8416
8
8
  pypynum/crandom.py,sha256=44GZ7o6y5PwgL-cZLkXUZaAUfiW6aadyRNfMdxTnH30,5111
9
9
  pypynum/dataproc.py,sha256=TjenSyevaGo94vIelK9OF_8F_J8jlqHuMskO0YEaEFU,9233
10
- pypynum/dists.py,sha256=fz7hZZfHFWDHnxo7Li9eNkaj7cQtE6SuYGaitSRwHKc,29695
10
+ pypynum/dists.py,sha256=CaBxHp_8zmUd-9piNmDIhVj6GGc96JhBdB3v-IqdFWQ,29739
11
11
  pypynum/equations.py,sha256=a2fCrcWXoINEBQeYwkYy7Ql7WeO5TUJV1avJZkt26uM,554
12
12
  pypynum/fft.py,sha256=AtG0tESykzEs4gDsXhcizW7qhQnmw0gjcWcXefBqzhs,1401
13
- pypynum/files.py,sha256=iLtTc5UTtUUWoh2sDJl5Yyy_rT8-Vi0pby5c2J95EqE,3397
13
+ pypynum/files.py,sha256=xYrdgBsXohJkcibNlouNp9FYiN3PUlaHrECHJFEpQko,3422
14
14
  pypynum/geoms.py,sha256=WryE15TywAbKMgZdlXNVQJLJ1jwFQcFvUq8mmXcAckQ,13982
15
15
  pypynum/graphs.py,sha256=QxtNGt_xIKzkCETapnBtP1nhAOq0ohNMf0LP3T7EnBY,10071
16
16
  pypynum/groups.py,sha256=kzUR_r10ubOB2o51rKKdQPHRsgdTGL2yoY7yseKInZc,4263
17
17
  pypynum/hypcmpnms.py,sha256=TQ6umu0A6PH6OMNC7M63nJ1UydUG-xAeoVITLYnQQr4,12336
18
- pypynum/images.py,sha256=DPpsW_qdoKSrXz3w6DWaQDj9Y_u5l_JYWbNt47taJbs,12157
18
+ pypynum/images.py,sha256=paMZUQsY9KNhLfLwblg-otKjh_dumw05PFgIazBBJg4,15227
19
19
  pypynum/interp.py,sha256=wNMa6M_IRpSe026tuRxXfr244oBtgHOpCpYlGd4eyhA,4920
20
20
  pypynum/kernels.py,sha256=GMwWnjLWEprFXSEAIN8d6GZrC2KDx6qhJdbcLBoYOTg,15869
21
21
  pypynum/logics.py,sha256=EwvWFNND14__oWx7o-_oYIUubmVhp3DrvBcnRCWW8vc,10999
22
- pypynum/maths.py,sha256=oqqFlfsYqzjhgBKlS4CNdkKPxKREC-ylC9tW-WVrOT4,34119
22
+ pypynum/maths.py,sha256=xK425K10MZ0ZZD_4ez7Mkl37-4MMCP8W_TPR6AJod2E,34319
23
23
  pypynum/matrices.py,sha256=ZPvfaZ45WQ963Oo2E0btY5dSRRZz7xrARQGji2EgOqE,32248
24
- pypynum/multiprec.py,sha256=LS7pq9_0zFw4wsARwTlCXa57RYTp7nJ0k66HErfgFfg,20209
24
+ pypynum/multiprec.py,sha256=Xmzks6_X0WFtypCti-hUZRgOZENpZ5MbJ1MKtfPCdCk,20236
25
25
  pypynum/networks.py,sha256=iSOvC9JW1h4AFGokGGOTkKie5hAYN_YT9H4f3apI9b8,3275
26
- pypynum/numbers.py,sha256=EPzw8zq5U7GQj8URu2VxeVIXS-_XQm2ADmSAIHa816k,11133
26
+ pypynum/numbers.py,sha256=n_Acd_0vt1bE36WdUTB1nSVbBTD6bXia2DYL4fyLy2s,11155
27
27
  pypynum/plotting.py,sha256=mbIYK5TpY1qvuMJrqz4d8bxJEiZww3AI684vSKV-DgU,7781
28
28
  pypynum/polys.py,sha256=9ZrIYHpnCh2XoKaym2aQKArjjTRjLGvwcJ4_rPikVwI,14581
29
29
  pypynum/pprinters.py,sha256=_EYgXh6oeXxpV62sldAWeNfhbsOBy9bTdv0oIRoB6NY,2518
@@ -32,18 +32,18 @@ pypynum/regs.py,sha256=mV1r1KkXAv07FmcTntaBF0rcwHBXUyXPvC9h6UOkhE0,2042
32
32
  pypynum/seqs.py,sha256=HSAyFxj4Jt_esuQfMWysER0E5x4Avv1pmTJ07CnLu2g,11663
33
33
  pypynum/special.py,sha256=cuucF1Z6CPRaBiffRKKbStfWaZkbOEqLPTIg7zRXLFQ,19748
34
34
  pypynum/stattest.py,sha256=nCAqFjaHVa9EOaWcmgWrhPuBoyLdoypkz6_YeM_AOd8,5511
35
- pypynum/symbols.py,sha256=u-Dig3OLs6qoLzxMpTAYJGq5uSWDMvgU13TAHKLyjMY,2768
35
+ pypynum/symbols.py,sha256=kWmv3R5PY_1DBIJjaj8mXnBiqPjn4nFBJ5IPn7C2Kyo,2797
36
36
  pypynum/tensors.py,sha256=F87npY9VbaCAr0OvTwsW1GAhEQPQAQTVlJzeVuf4zSg,3418
37
- pypynum/test.py,sha256=dPgJjmk-45AQJ5r3ijAAjDyu2EyUXqyU2a8XbO4renc,8752
37
+ pypynum/test.py,sha256=adrdteUm1n-2pFMOa707h-IDgIj4EWgb9r_VlJl51XU,11090
38
38
  pypynum/this.py,sha256=47naBLM9YWe_Ni0BZ_qNYP5yqoPn3jLxIEgEprNyS_w,3405
39
- pypynum/tools.py,sha256=WgYlo6EFV5oOj8rCrgx565ivmPf-D2MAIfjDzaS4wzQ,31469
39
+ pypynum/tools.py,sha256=zveMYLftdX3r1fGWy0YlINX-WzbyZVmcoPbDNkbVwfU,31473
40
40
  pypynum/trees.py,sha256=b02t69vBjc3ibKaUAkWfBvMDdsugF4DpGC2-q4RsgEU,39779
41
41
  pypynum/types.py,sha256=v1lGIL_p0xgxL6mGX7uBQBHBa7UScKCsgPkW8Q6nzlk,3348
42
42
  pypynum/ufuncs.py,sha256=Lmr_ZVsswQqbGo2MB8gjd_lijRBOZIy2q2wQBOHvYxM,3549
43
- pypynum/utils.py,sha256=BhH_iSU44bS6tC3MMrDfIfGhIsQg9nMVlp6fl0-KcRA,21001
43
+ pypynum/utils.py,sha256=PLjv0xEDEAbeAoO8AqGw7VkN2tr1IEmZZ6c_YoNpDgc,24062
44
44
  pypynum/vectors.py,sha256=ANvmI1ftLZPIxO871YLuXUzV6CtvHXrGBf5YIqN_qUE,3390
45
- pypynum/zh_cn.py,sha256=raTXV7sa9zob3ZtnT263kNFL7NDm-0ZhTrqZIcc88Tk,13812
46
- PyPyNum-1.17.0.dist-info/METADATA,sha256=bFy4uvxJM3gyGA3pXiXeFSvCvGq-ZncNXW44ioUGH1k,133806
47
- PyPyNum-1.17.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
48
- PyPyNum-1.17.0.dist-info/top_level.txt,sha256=4wW_Xb4bRglmiMsdPAe9f75MkXhNpuN88H17g_Cr5u8,8
49
- PyPyNum-1.17.0.dist-info/RECORD,,
45
+ pypynum/zh_cn.py,sha256=axFIqOrAkIk5Ib3eJmnXbsAMM4VMAN3sC82VM3s84YU,13810
46
+ PyPyNum-1.17.2.dist-info/METADATA,sha256=u0T9m0JL7Wqxf2UAtbVOqbegonR6YT2p-gSiFzuEUqg,131751
47
+ PyPyNum-1.17.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
48
+ PyPyNum-1.17.2.dist-info/top_level.txt,sha256=4wW_Xb4bRglmiMsdPAe9f75MkXhNpuN88H17g_Cr5u8,8
49
+ PyPyNum-1.17.2.dist-info/RECORD,,