Skip to main content

Correlation Integral caluclations done fast with openmp

Project description

Calculates the correlation integral. Does not take self-distance into account. Memory complexity is len(data)*len(Rs). Calculations are done with single precision floating point data, and the theoretical maximum data length is 3.037.000.499 points divided by the number of Rs that you want to calculate

Usage

To import the library run:

import correlation_integral as ci

Three methods can be used

ci.euclidean
ci.manhattan
ci.chebyshev

All three methods take the following arguments:

  • data: one-dimensional float32 numpy array with the data

  • dims: integer specifying the dimension for which to calculate the correlation integral

  • r : one-dimensional float32 numpy array with the distances to calculate the correlation integral for

And they return the following output:

  • cd: one-dimensional float32 numpy array which contains the correlation-integral for each r given in the input

The signature looks like this:

cd = ci.euclidean(data,dims,r)

Installation

pip install correlation-integral

Example

import correlation_integral as ci
import numpy as np
import matplotlib.pyplot as plt

# example Henon map - create & plot data
a=1.4;
b=0.3;

x=np.zeros(shape=(10000+5000),dtype=np.float32)
y=np.zeros(shape=(10000+5000),dtype=np.float32)
x[0]=1
y[0]=0
for i in range(1,len(x)-1):
    x[i+1]=1-a*x[i]**2+y[i]
    y[i+1]=b*x[i]

x=x[5000:]
y=y[5000:]


# correlation integral analysis done only with x-variable
nrsteps=10;
dims=np.arange(1,16) # calculate for d=1 uptil d=16
nrdims=dims.size;
rs=np.logspace(-2.5,0.5,nrsteps)
Cds=np.zeros((nrsteps,nrdims));

print("Start")
for j in range(nrdims):
  Cds[:,j] = ci.chebyshev(x,dims[j],rs)
  print("x",end="")
print("\nDONE!")

# Plot the results
for i in range(len(dims)):
  plt.plot(rs,Cds[:,i])
plt.xscale("log")
plt.yscale("log")
plt.show()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

correlation_integral-0.0.5-pp38-pypy38_pp73-win_amd64.whl (365.7 kB view details)

Uploaded PyPy Windows x86-64

correlation_integral-0.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

correlation_integral-0.0.5-pp37-pypy37_pp73-win_amd64.whl (365.7 kB view details)

Uploaded PyPy Windows x86-64

correlation_integral-0.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

correlation_integral-0.0.5-cp310-cp310-win_amd64.whl (350.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

correlation_integral-0.0.5-cp310-cp310-win32.whl (349.0 kB view details)

Uploaded CPython 3.10 Windows x86

correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl (842.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_i686.whl (968.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

correlation_integral-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

correlation_integral-0.0.5-cp39-cp39-win_amd64.whl (350.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

correlation_integral-0.0.5-cp39-cp39-win32.whl (348.9 kB view details)

Uploaded CPython 3.9 Windows x86

correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl (841.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_i686.whl (967.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

correlation_integral-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

correlation_integral-0.0.5-cp38-cp38-win_amd64.whl (350.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

correlation_integral-0.0.5-cp38-cp38-win32.whl (348.9 kB view details)

Uploaded CPython 3.8 Windows x86

correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl (843.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_i686.whl (969.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

correlation_integral-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

correlation_integral-0.0.5-cp37-cp37m-win_amd64.whl (350.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

correlation_integral-0.0.5-cp37-cp37m-win32.whl (348.8 kB view details)

Uploaded CPython 3.7m Windows x86

correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl (841.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl (968.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

correlation_integral-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

correlation_integral-0.0.5-cp36-cp36m-win_amd64.whl (350.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

correlation_integral-0.0.5-cp36-cp36m-win32.whl (348.8 kB view details)

Uploaded CPython 3.6m Windows x86

correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl (838.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl (965.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

correlation_integral-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file correlation_integral-0.0.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 365.7 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8e9593a5012e8b0282ead1e882953b9b3f6de7c6c1421d5162a3660ca8e0e331
MD5 f85116640f0bad2d281a5b94e9659a2e
BLAKE2b-256 eb962674d4f8aea5c8668621d86d7f986b8cb2d1975630fa3db1655816b67cd7

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 481c57c8f52b7fd27977455680d27499a9a8c1b37dfdb6402300404b3d424e27
MD5 edfd8f96e8f93875564a4dfd2dc0a9cb
BLAKE2b-256 11e698698aa3640bbc2fddcb8b4c01aee8adcc19d185c8b61f9fe99007ccb81e

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56651f4d9d73bc6b9592f3231b031871351cb95997d9b10e44e0e4bfb254d071
MD5 025d0158c241719efc96055bc749528c
BLAKE2b-256 f665c34bd1a1c6d22818696aca4ec1fecbe49db888e0836552b6c547f0c0c692

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dea184c3308248112217476542f0519637613f0102f599fae66199cea270e35
MD5 ef3468a4be46d2643efcdfff746f62ff
BLAKE2b-256 371b3c4d147da0c7af854885fbb4913671ab2eef6dfbd782326274f919b56726

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 365.7 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4d166f2a3e7cb8679b884dcef1d9d68c36964755b23814085a785825cec5e00a
MD5 55458641c0c99a7d7eb57fb47e26113c
BLAKE2b-256 59959ed308b2206b4c78f31a507439ce6e6fb890af985605fab8092a81a83f26

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f72b7369ca2e7260518e514ce8b0a078d34a35e2365c5c341ab6fdc691e299d1
MD5 0ddcbceebbabd5eafa32ce332ea818e4
BLAKE2b-256 508a2a978ca63a233337d93198c8e42744dc6fbd8d710d07b708a8eb022f26b6

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e7674115df06843c6b47733d5ff9bf4d979afb5ab9e8058bd2e05b356592e3e
MD5 ba665b6466b45d0a744b97448f652932
BLAKE2b-256 e61992c4958dcb91a501f9345765c7f3be2f9426e218e3d81007407ab7a9c139

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce55bf8211f1b97bc1dc78938b51ba1233e5fcb2d00b7d39445c8897cdef9695
MD5 396af7c9e600eefdcf614b65be896cc4
BLAKE2b-256 b852fd230305fd6c021e7fc3f72d06e59126c60708fff720522b795e66fd82e5

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc4154720d14534c1485c2d2d90a41f525c32b0f165d389ba59ac772adf38587
MD5 ae55db01bf1238fe75150d14d30155ce
BLAKE2b-256 dce00527dc1056ec6edce5649f2cc72131cf2f9be10ec6e36a88d4b8dc7129e0

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 349.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b438e22e8b48d1e78ff0422c64be23dc454a173cab19bc64e97d02189360d175
MD5 63758c32a7819074a57d05ecf4ec24a0
BLAKE2b-256 3f5d6d9704341aa1e94a8d8c88e2ed34e1226bac41e20edafb59c2c073f30d07

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 842.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c287e965842943cc884ba18743ecf9a5183f97156e1c5264d529136d661dbdc
MD5 e60cd233eaf3dbbfe67f609a7fa5aeda
BLAKE2b-256 86736d6fc95ee77de5234da53b905588c15b06e429789aa9d6b9cde4120f100f

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 968.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a1af5a8efe674fdd3dc0e066e4b0c4165868351aa361f2061d95e1ef05174587
MD5 acea9e4f2ccb48ca2e3031109df0c7d5
BLAKE2b-256 1d446eae5f7349441e8cce81fcf71cbbf1cc76f14e93fcc3a3cf42d25063585d

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 561d97ee22a1b364c5a76c1b08ff259177cb5c0d11169f62c3143ee206dcfed5
MD5 2d5008b14d2b3d167daa127349519fa2
BLAKE2b-256 a870becea9b79b28cc8d248ac68095d10fe1ab79ec2143a2b631f2d4caa4a185

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 30cd4600b31eedccfd65ae67e7af4ea52a697bd25f0f74d1d50a885b3c61cc5f
MD5 dd8630a8dcf9b7b4ca001c5be34a405b
BLAKE2b-256 6d6b1717afa1ef5fed79c8023ff211b407e765bdfbb2e533bea654f72ab96332

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f6c4c92500f35fb17838c67248caef4d8888ea9207a58ab40e9940f417bc436
MD5 3f45b451350ced06a8fd85c1ba17d6ab
BLAKE2b-256 f5c842bdf5f55a7aeb8eebc5da8eb38c6d06b58202c2b09f64e36287de9f2159

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ba11dba557430e857dd8b25b33d5488611a99899d53a2f74d3464b1b7d4f6a16
MD5 f066b24d59901d1f25cb6ee007c0171f
BLAKE2b-256 0e5bbb48a113e06377ff05d0d14f58a6ff5144d3b38fa2a2c8a17b964ff1c6e2

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 348.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 428d61f2a0e204e2510a1330664620aef0e40b21e2e4385e97ced33728fa2aea
MD5 c8304ed81d8792409fa8f2cf37385186
BLAKE2b-256 79bfca049f549b104de72b2d52d0d888b6e06d5859adc9a0589516711e8a4d5d

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 841.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2b30ee0203dcf149f76ea568c5dffe4f1de58391657ba0afa750ef56c718b0f2
MD5 e28709b89d8aca407b17d9cc1af1ebdd
BLAKE2b-256 d15be6b920441d85c8b5cb4d086b4c04aa2ef09633061f42ab065bd866d36102

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 967.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2697522bb0e760958279ecbdb50ee830b477265c95b8e1964f4e7f3e039406a7
MD5 ff0c2420e9860d9ac22270dc3cef0109
BLAKE2b-256 5ceb59bac62cbe71b0a8fde1187463a07d6b46444f8fdd68af4d33be7f8d65b3

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73bb542a960de295306cc8cef293449773918231bac60c558a0e4cb457975c94
MD5 dbc03b0c0d609e2917aa9f55f94e146b
BLAKE2b-256 dc78e3176074b71edac476646ecc09ccd98c8ac99982972fee285b07cb53f379

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1ed2483d133cbce4ba52d0cfc386e2c0954e5aafa0921af172e8fd911ccff77
MD5 3eab9e6af340ab88f394336cd5f99e34
BLAKE2b-256 ae6767d57198b8845fc79e04534b82e793b3a13a6700754a7da334ff959f4393

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb8e0459c7b7bb4cfeadc1037af6fa263193a44b454eae148d5cb0df1d744be9
MD5 4753acd8d87ef224c7d1ec7061157af6
BLAKE2b-256 0bd96fbddd44b086f4839d025275dc25fe7831fdd10d75264dbdd535f0ba9644

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 919e63da7d74c11477ef13af1a3af66a9f4ca4a01119b6e7c77d014cce21388a
MD5 89b5f4805977eb13937389d782d49b32
BLAKE2b-256 24ee57ca94ed49a98166c1632b1d6413739bebb92eeec5653453c65e033f8580

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 348.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e45f9cbc361320735492f3e4f28240e6529730c54280472573e6f584b1edebf5
MD5 8ad9815c6cc0fb97c66beb8ad2a10a50
BLAKE2b-256 c611e5167cc4fc252a0a888561e7e1d24a29ca5fcf1b7f6a8b2ab05128eaa60e

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 843.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60da3f6822ba60fb8b3ab8e8656059f2f0dc17b0f300eb4757735504de7f5b6d
MD5 6a51395583774a9955ba4047a9858762
BLAKE2b-256 94533fbf4bc624ed00db7c8bae6b1338473d1bafa5be987c055ada6d18bc2227

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 969.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f027912523cba9f6d96259ac66962ed3f30eba4bd4a0ba98aef162b9f08c64b8
MD5 2f40e4f5a56b306be9bbb87c28121d3e
BLAKE2b-256 e2b3e39534fd502cba007b71c1100273637bc1414d781b26959db3fb1afac0bb

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42f2ad019faf809db38c6f7f8e29d86c3b71968fe8add0cd9e43eb53676140e5
MD5 6112348aecdd09374f5003d80ddab00f
BLAKE2b-256 664fcd0405ce59886f1445b9f9c54b7774becc89afc798617abd730b4e41b76f

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c5783f1111550588af84765806d50f112fe002df006974501bfa1a083eb43e4
MD5 102a89451de8b1b00ae995d987cebda5
BLAKE2b-256 d9659be06da2720cb60d21a6b544191e6ab3aec3c6fc9d308403ec4c3e79f12f

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f36fae5adee7feb69b34a859220fd98fe7b09bbc18d89dadef8ec9668b294ea
MD5 ed8654abd492162923557473bb5a2f4c
BLAKE2b-256 a674ed1da64e8fa8ceb7a12ee40dc04e0ff1a0d3d3b71ed027b359434b803273

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 350.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5b229c73b21eac7862a1adde35070f1be56ea435a107288d57258bc3b9d07483
MD5 a4b12259f0d0793f7cc2340f423a826f
BLAKE2b-256 b957364f1175a3ef2d7314794d7120c9bfb3082699bf1c3fc41daa110de2d4f1

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 348.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 696e109b0d57981eed444d6b4c6b60d87558ba65cc056077df9dcea2ac1a0214
MD5 5fb010d4ba40cf8370b28cf832a655e2
BLAKE2b-256 c9e138e4055d0d431ad3458836f9e438ca0a46431c45ad387a8eadd9a23737b3

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 841.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f82296d905897359c2bf62ad9610952edd63e2286ea200d872b94921226b12f0
MD5 40c61f3ce5e423e01d6decd5da82999e
BLAKE2b-256 dc70ff980b4ef1d8aea0f7774432b1ccd6462d95ff58bf8f8068e7a3aceaa1a4

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 968.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5a60000facc7d6ae372d03ad73e79954150eb49e49234c4383d501f60a2393ef
MD5 7e5b5a6895c898a84462473e1500f5eb
BLAKE2b-256 08131c52e45b33cca063ed08da8ba67068a9420b45dd4007590ac6031d596ec6

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59b6662be85de5dbc4746b3858dfe90cef30fc7753d5e4aecd7ab12559472fd0
MD5 d836c319c0f0c2d2cdf66ec5932ee7f0
BLAKE2b-256 c56a3418df360a380048ad32c9c3a1085745447da425f57437be582c5a0341d4

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1be4531abc42636fd1e0fac2f16b4d19053bdc733b87d8366d61f840726315ae
MD5 ca3274a03e60ddc4c2823c6e9672dbf2
BLAKE2b-256 ee3ea41eb90420b9d863b1275b38aa42b668b0293553476a419306bf0e60e8fc

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56618eb79481c934fe536b13a51e486c4ca9c8dda8c25434512afec483de90e0
MD5 771ca92fb4c446c33246157ccab52c32
BLAKE2b-256 e2824e3ad39480a3fb0ba78abb1b56a55241adfcbe293b015e8ad8327b73d601

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 350.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 61f57e2474192cd4e0981770dba660917e6cab58c6c72fd8ee98d8bba98eb049
MD5 96a357619289bba2937b301afc319827
BLAKE2b-256 a261216faa3c5af8d06eeee1f5543cbeebdf25c1c026840e39436a33b8bb472b

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 348.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3d633627ab53f7dda255a83acebec305af7c9cc686f96cec0756cc13b5b95446
MD5 c80fc23234793933b9c1bcddc3e3ce6e
BLAKE2b-256 6ad28c53d7c6cc2d9c8efd76f07975c51a5390913462b659236feab2214a9401

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 838.8 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b600486ee4b2fe93b190ebaa8c9d6aceb7089200b97b530e0ca6d879eee003dc
MD5 f469c09fa5c160c4a809d09034a9a4f6
BLAKE2b-256 d66bdd06bbfd101bcc20c395b4334646b7ab7afdab144aabbcf73f879fbe81f3

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 965.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 16c8ea38f232228dbe55be8e69b8743d899e2d8f4e39cc4c27e79666ace16aa4
MD5 c3f2e951c2135f17b44a1c96c561807d
BLAKE2b-256 0c925d1b945c7a6c27b71b30e1e828bce2574525343e8c42450d36d2da3aec33

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0a1fd20b656b01bcefbe005eea6f4522cc4708cf4342d55bb74e9f30e23b18a
MD5 4b22d0815989e09fa81acb855ff8e3c9
BLAKE2b-256 bb2ec7959453c7a41104652e7cec850a7ef5125affc3c1c9fa4c2753eec3668c

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1260906dba8287f3250a42bb926c6668a3b01a0c6464023d402702a3afa40ad
MD5 aa7c819486624a009f744e65991a2d7f
BLAKE2b-256 aacb197819e015d84fd74ec51cabb4cf74f2d4d8e45465af7cc82e95ecb12317

See more details on using hashes here.

File details

Details for the file correlation_integral-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: correlation_integral-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for correlation_integral-0.0.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cd002afbfc87c24b27a27cd60c29a8d7f4b683c4609895dc44dd6539c4e17ca
MD5 7acec88c9f824a2cc401e9d27a77b0a9
BLAKE2b-256 f65d2f0221cd36ec0f29f83701ee49b2390952442035c66fec65f5952833553e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page