PyPyNum 1.17.0__py3-none-any.whl → 1.17.1__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyPyNum
3
- Version: 1.17.0
3
+ Version: 1.17.1
4
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.
5
5
  Home-page: https://github.com/PythonSJL/PyPyNum
6
6
  Author: Shen Jiayi
@@ -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.1 | 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,71 @@ 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
884
-
885
- !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
886
-
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]
827
+ The `pypynum.images` module
828
+ now encompasses three classes,
829
+ expanding its image processing functionality.
830
+ The original `PNG` class
831
+ has been transformed to be based on
832
+ the `BaseImage` class.
833
+ This update includes a specific fix
834
+ for the `read` method in `PNG`,
835
+ addressing issues with reading
836
+ large images.
837
+ 1. `BaseImage`: A foundational class
838
+ for image processing, offering
839
+ basic methods like image creation,
840
+ pixel access, and metadata retrieval.
841
+ 2. `BMP`: A subclass of `BaseImage`,
842
+ tailored for BMP image handling,
843
+ providing specialized BMP functionalities.
844
+ 3. `PNG`: The `PNG` class, now built on
845
+ `BaseImage`, with an improved `read`
846
+ method that solves the problem of
847
+ reading large PNG files.
848
+ This fix to the `read` method in `PNG`
849
+ ensures efficient processing of large images,
850
+ maintaining image quality and integrity.
851
+ The module's enhanced capabilities
852
+ make it more robust and user-friendly
853
+ for handling substantial PNG files.
854
+
855
+
856
+ <<< The following are some usage examples >>>
857
+
858
+
859
+ # Import BMP and PNG classes
860
+ from pypynum import BMP, PNG
861
+
862
+ # Instantiate BMP class
863
+ bmp_image = BMP()
864
+ # Instantiate a BMP image with specified dimensions and color
865
+ bmp_image.new(width=100, height=100, color=(255, 0, 0), color_mode="RGB", bit_depth=8)
866
+ # Set pixel color at (50, 50) to blue
867
+ bmp_image[50, 50] = (0, 0, 255)
868
+ # Save the BMP image
869
+ bmp_image.write("output_bmp.bmp")
870
+ # Instantiate PNG class
871
+ png_image = PNG()
872
+ # Instantiate a PNG image with specified dimensions and color
873
+ png_image.new(width=100, height=100, color=(0, 255, 0), color_mode="RGB", bit_depth=8)
874
+ # Set pixel color at (50, 50) to yellow
875
+ png_image[50, 50] = (255, 255, 0)
876
+ # Save the PNG image
877
+ png_image.write("output_png.png")
878
+ # Create BMP reader to read the BMP image
879
+ bmp_reader = BMP()
880
+ # Read the BMP image from the file
881
+ bmp_reader.read("output_bmp.bmp")
882
+ # Print the BMP image and pixel at (50, 50)
883
+ print("BMP Image:", bmp_reader)
884
+ print("BMP Pixel at (50, 50):", bmp_reader[50, 50])
885
+ # Create PNG reader to read the PNG image
886
+ png_reader = PNG()
887
+ # Read the PNG image from the file
888
+ png_reader.read("output_png.png")
889
+ # Print the PNG image and pixel at (50, 50)
890
+ print("PNG Image:", png_reader)
891
+ print("PNG Pixel at (50, 50):", png_reader[50, 50])
960
892
 
961
893
  !=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=
962
894
  ```
@@ -994,7 +926,7 @@ PyPyNum
994
926
  │ ├── asarray(data: Any) -> Any
995
927
  │ ├── aslist(data: Any) -> Any
996
928
  │ ├── 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
929
+ │ ├── fill(shape: typing.Union[list, tuple], sequence: typing.Union[list, tuple, str], repeat: bool, pad: typing.Any, rtype: typing.Callable) -> typing.Any
998
930
  │ ├── full(shape: typing.Union[list, tuple], fill_value: typing.Any, rtype: typing.Callable) -> typing.Any
999
931
  │ ├── full_like(a: typing.Any, fill_value: typing.Any, rtype: typing.Callable) -> typing.Any
1000
932
  │ ├── get_shape(data: Any) -> Any
@@ -1131,7 +1063,9 @@ PyPyNum
1131
1063
  │ └── 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
1064
  ├── images
1133
1065
  │ ├── CLASS
1134
- │ │ └── PNG(object)/__init__(self: Any) -> None
1066
+ │ │ ├── BMP(pypynum.images.BaseImage)/__init__(self: Any) -> None
1067
+ │ │ ├── BaseImage(object)/__init__(self: Any) -> None
1068
+ │ │ └── PNG(pypynum.images.BaseImage)/__init__(self: Any) -> None
1135
1069
  │ └── FUNCTION
1136
1070
  │ └── crc(data: Any, length: Any, init: Any, xor: Any) -> Any
1137
1071
  ├── interp
@@ -1674,7 +1608,7 @@ PyPyNum
1674
1608
  ### Code Testing
1675
1609
 
1676
1610
  ```python
1677
- from pypynum import (arrays, geoms, hypcmpnms, logics, matrices, symbols, tensors, vectors,
1611
+ from pypynum import (arrays, geoms, hypcmpnms, logics, matrices, multiprec, special, vectors,
1678
1612
  ciphers, consts, equations, maths, plotting, random, regs, tools)
1679
1613
 
1680
1614
  ...
@@ -1765,48 +1699,46 @@ print(m1.rank())
1765
1699
  2
1766
1700
  """
1767
1701
 
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"))
1702
+ mp_complex1 = multiprec.MPComplex("1.4142135623730950488016887242096980785696718753769",
1703
+ "2.7182818284590452353602874713527", sigfigs=30)
1704
+ mp_complex2 = multiprec.MPComplex("1.7320508075688772935274463415059",
1705
+ "3.141592653589793238462643383279502884197169399375105820974944", sigfigs=40)
1706
+ modulus = mp_complex1.modulus(sigfigs=25)
1707
+ print("Modulus of the complex1:", modulus)
1708
+ sqrt_complex = mp_complex2.sqrt()
1709
+ print("Square root of the complex2:", sqrt_complex)
1710
+ power_result = mp_complex1 ** mp_complex2
1711
+ print("Power of complex1 raised to complex2:", power_result)
1712
+ euler_gamma = multiprec.mp_euler_gamma(sigfigs=45)
1713
+ print("Value of Euler's gamma constant:", euler_gamma)
1714
+ log_2 = multiprec.mp_log(2, 10, sigfigs=50)
1715
+ print("Logarithm of 2 (base 10):", log_2)
1716
+ exp_e_squared = multiprec.mp_exp(multiprec.mp_e() ** 2, sigfigs=20)
1717
+ print("Value of exp(e^2):", exp_e_squared)
1772
1718
 
1773
1719
  """
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']
1720
+ Modulus of the complex1: 3.064156670102011971734464
1721
+ Square root of the complex2: 1.630869996965458756791024890326755654659+0.9631646481434200567938527724670041364524i
1722
+ Power of complex1 raised to complex2: 0.144632311554759549910373681031-0.17337039786352194417298867399i
1723
+ Value of Euler's gamma constant: 0.577215664901532860606512090082402431042159336
1724
+ Logarithm of 2 (base 10): 0.30102999566398119521373889472449302676818988146211
1725
+ Value of exp(e^2): 1618.1779919126535017
1780
1726
  """
1781
1727
 
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)
1728
+ print("Bessel Function of the first kind, order 0 at x=1:", special.besselj0(1))
1729
+ print("Modified Bessel function of the first kind, order 1 at x=1:", special.besseli1(1))
1730
+ print("Hypergeometric function 0F1 at z=0.5 with b0=1:", special.hyp0f1(1, 0.5))
1731
+ print("Hypergeometric function 1F1 at z=1 with a0=1, b0=1:", special.hyp1f1(1, 1, 1))
1732
+ 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))
1733
+ print("q-Gamma Function at n=2 with q=0.5+0.1j:", special.qgamma(2, 0.5 + 0.1j))
1788
1734
 
1789
1735
  """
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]]]
1736
+ Bessel Function of the first kind, order 0 at x=1: 0.7651976865579666
1737
+ Modified Bessel function of the first kind, order 1 at x=1: 0.565159103992485
1738
+ Hypergeometric function 0F1 at z=0.5 with b0=1: 1.5660829297563503
1739
+ Hypergeometric function 1F1 at z=1 with a0=1, b0=1: 2.7182818284590455
1740
+ q-Pochhammer Symbol with a=2+1j, q=0.5+0.1j, n=2+1j: (-0.33353429405776575+1.8573191887407854j)
1741
+ q-Gamma Function at n=2 with q=0.5+0.1j: (0.9999999999999989-4.953510875709033e-16j)
1810
1742
  """
1811
1743
 
1812
1744
  string = "PyPyNum"
@@ -1983,10 +1915,10 @@ print(random.randint(0, 9, [2, 3, 4]))
1983
1915
  print(random.uniform(0, 9, [2, 3, 4]))
1984
1916
 
1985
1917
  """
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]]]
1918
+ [[[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]]]
1919
+ [[[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]]]
1920
+ [[[9, 0, 7, 5], [2, 7, 3, 5], [7, 6, 4, 2]], [[3, 4, 2, 0], [4, 2, 2, 1], [4, 5, 4, 9]]]
1921
+ [[[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
1922
  """
1991
1923
 
1992
1924
  print(regs.lin_reg(list(range(5)), [2, 4, 6, 7, 8]))
@@ -1,9 +1,9 @@
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=PFq3fCA_AWDACeU2GF_Rd9wJ4pkJ4Yxb-QV3JfDX1DM,90807
3
+ pypynum/__init__.py,sha256=wXTWPSdVgUuEQnft-hIl7pB3PJWibWowZPVQTQaU0wo,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
@@ -15,7 +15,7 @@ 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
@@ -23,7 +23,7 @@ pypynum/maths.py,sha256=oqqFlfsYqzjhgBKlS4CNdkKPxKREC-ylC9tW-WVrOT4,34119
23
23
  pypynum/matrices.py,sha256=ZPvfaZ45WQ963Oo2E0btY5dSRRZz7xrARQGji2EgOqE,32248
24
24
  pypynum/multiprec.py,sha256=LS7pq9_0zFw4wsARwTlCXa57RYTp7nJ0k66HErfgFfg,20209
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,9 +32,9 @@ 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
39
  pypynum/tools.py,sha256=WgYlo6EFV5oOj8rCrgx565ivmPf-D2MAIfjDzaS4wzQ,31469
40
40
  pypynum/trees.py,sha256=b02t69vBjc3ibKaUAkWfBvMDdsugF4DpGC2-q4RsgEU,39779
@@ -43,7 +43,7 @@ pypynum/ufuncs.py,sha256=Lmr_ZVsswQqbGo2MB8gjd_lijRBOZIy2q2wQBOHvYxM,3549
43
43
  pypynum/utils.py,sha256=BhH_iSU44bS6tC3MMrDfIfGhIsQg9nMVlp6fl0-KcRA,21001
44
44
  pypynum/vectors.py,sha256=ANvmI1ftLZPIxO871YLuXUzV6CtvHXrGBf5YIqN_qUE,3390
45
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,,
46
+ PyPyNum-1.17.1.dist-info/METADATA,sha256=ZZv6d_3EZeCz5fQOw_hDVi0LCcbPhTlMQ1xiWz4-FZY,132462
47
+ PyPyNum-1.17.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
48
+ PyPyNum-1.17.1.dist-info/top_level.txt,sha256=4wW_Xb4bRglmiMsdPAe9f75MkXhNpuN88H17g_Cr5u8,8
49
+ PyPyNum-1.17.1.dist-info/RECORD,,