Skip to main content

Fit exponential and harmonic functions using Chebyshev polynomials

Project description

Chebyfit is a Python library that implements the algorithms described in:

Analytic solutions to modelling exponential and harmonic functions using Chebyshev polynomials: fitting frequency-domain lifetime images with photobleaching. G C Malachowski, R M Clegg, and G I Redford. J Microsc. 2007; 228(3): 282-295. doi: 10.1111/j.1365-2818.2007.01846.x

Author:

Christoph Gohlke

License:

BSD 3-Clause

Version:

2026.1.18

Quickstart

Install the chebyfit package and all dependencies from the Python Package Index:

python -m pip install -U chebyfit

See Examples for using the programming interface.

Source code and support are available on GitHub.

Requirements

This revision was tested with the following requirements and dependencies (other versions may work):

  • CPython 3.11.9, 3.12.10, 3.13.11, 3.14.2 64-bit

  • NumPy 2.4.1

Revisions

2026.1.18

  • Rename chebyshev_invers to chebyshev_inverse (breaking).

  • Use multi-phase initialization.

  • Improve code quality.

2025.8.1

  • Drop support for Python 3.10, support Python 3.14.

2025.1.1

  • Improve type hints.

  • Drop support for Python 3.9, support Python 3.13.

2024.5.24

Refer to the CHANGES file for older revisions.

Examples

Fit two-exponential decay function:

>>> deltat = 0.5
>>> t = numpy.arange(0, 128, deltat)
>>> data = 1.1 + 2.2 * numpy.exp(-t / 33.3) + 4.4 * numpy.exp(-t / 55.5)
>>> params, fitted = fit_exponentials(data, numexps=2, deltat=deltat)
>>> numpy.allclose(data, fitted)
True
>>> params['offset']
array([1.1])
>>> params['amplitude']
array([[4.4, 2.2]])
>>> params['rate']
array([[55.5, 33.3]])

Fit harmonic function with exponential decay:

>>> tt = t * (2 * math.pi / (t[-1] + deltat))
>>> data = 1.1 + numpy.exp(-t / 22.2) * (
...     3.3 - 4.4 * numpy.sin(tt) + 5.5 * numpy.cos(tt)
... )
>>> params, fitted = fit_harmonic_decay(data, deltat=0.5)
>>> numpy.allclose(data, fitted)
True
>>> params['offset']
array([1.1])
>>> params['rate']
array([22.2])
>>> params['amplitude']
array([[3.3, 4.4, 5.5]])

Fit experimental time-domain image:

>>> data = numpy.fromfile('test.b&h', dtype='float32').reshape((256, 256, 256))
>>> data = data[64 : 64 + 64]
>>> params, fitted = fit_exponentials(data, numexps=1, numcoef=16, axis=0)
>>> numpy.allclose(data.sum(axis=0), fitted.sum(axis=0))
True

Project details


Download files

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

Source Distribution

chebyfit-2026.1.18.tar.gz (18.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

chebyfit-2026.1.18-cp314-cp314t-win_arm64.whl (25.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

chebyfit-2026.1.18-cp314-cp314t-win_amd64.whl (31.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

chebyfit-2026.1.18-cp314-cp314t-win32.whl (27.2 kB view details)

Uploaded CPython 3.14tWindows x86

chebyfit-2026.1.18-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (77.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chebyfit-2026.1.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

chebyfit-2026.1.18-cp314-cp314t-macosx_11_0_arm64.whl (28.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

chebyfit-2026.1.18-cp314-cp314t-macosx_10_15_x86_64.whl (31.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

chebyfit-2026.1.18-cp314-cp314-win_arm64.whl (25.1 kB view details)

Uploaded CPython 3.14Windows ARM64

chebyfit-2026.1.18-cp314-cp314-win_amd64.whl (30.5 kB view details)

Uploaded CPython 3.14Windows x86-64

chebyfit-2026.1.18-cp314-cp314-win32.whl (26.5 kB view details)

Uploaded CPython 3.14Windows x86

chebyfit-2026.1.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (70.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chebyfit-2026.1.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (74.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

chebyfit-2026.1.18-cp314-cp314-macosx_11_0_arm64.whl (28.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chebyfit-2026.1.18-cp314-cp314-macosx_10_15_x86_64.whl (30.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chebyfit-2026.1.18-cp313-cp313-win_arm64.whl (24.1 kB view details)

Uploaded CPython 3.13Windows ARM64

chebyfit-2026.1.18-cp313-cp313-win_amd64.whl (29.7 kB view details)

Uploaded CPython 3.13Windows x86-64

chebyfit-2026.1.18-cp313-cp313-win32.whl (25.7 kB view details)

Uploaded CPython 3.13Windows x86

chebyfit-2026.1.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (70.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chebyfit-2026.1.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (74.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

chebyfit-2026.1.18-cp313-cp313-macosx_11_0_arm64.whl (28.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chebyfit-2026.1.18-cp313-cp313-macosx_10_13_x86_64.whl (30.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chebyfit-2026.1.18-cp312-cp312-win_arm64.whl (24.1 kB view details)

Uploaded CPython 3.12Windows ARM64

chebyfit-2026.1.18-cp312-cp312-win_amd64.whl (29.7 kB view details)

Uploaded CPython 3.12Windows x86-64

chebyfit-2026.1.18-cp312-cp312-win32.whl (25.7 kB view details)

Uploaded CPython 3.12Windows x86

chebyfit-2026.1.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (70.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chebyfit-2026.1.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (74.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

chebyfit-2026.1.18-cp312-cp312-macosx_11_0_arm64.whl (28.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chebyfit-2026.1.18-cp312-cp312-macosx_10_13_x86_64.whl (30.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chebyfit-2026.1.18-cp311-cp311-win_arm64.whl (24.1 kB view details)

Uploaded CPython 3.11Windows ARM64

chebyfit-2026.1.18-cp311-cp311-win_amd64.whl (29.6 kB view details)

Uploaded CPython 3.11Windows x86-64

chebyfit-2026.1.18-cp311-cp311-win32.whl (25.5 kB view details)

Uploaded CPython 3.11Windows x86

chebyfit-2026.1.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (69.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

chebyfit-2026.1.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (73.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

chebyfit-2026.1.18-cp311-cp311-macosx_11_0_arm64.whl (28.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chebyfit-2026.1.18-cp311-cp311-macosx_10_9_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file chebyfit-2026.1.18.tar.gz.

File metadata

  • Download URL: chebyfit-2026.1.18.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18.tar.gz
Algorithm Hash digest
SHA256 24d9d4bd7d4c4d05ac7d6f91cfca3b4ee93ccfb8c4ef1e28a02f5aa66cff2181
MD5 a37569f283e304c6cf9a4f78a7c4ba03
BLAKE2b-256 0c76c054c05d54f757f2bf298dabe41449ec3c72ff7d1187ff87c4de805fc3a3

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 052e1d93716d7c998056bba731c3fe3a33c6f3e463ad3bf6b82dc1d819bf946e
MD5 f56955c3885647fe90925256be8ffe38
BLAKE2b-256 f29e76c7c8ef099e3b0c6f2dbda913e2e13678a360c2b6f72351f0959d034cdd

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f828b38b2d9d46f97e495e7e4047d2900ad8a669b537f8efc7ec201f4428480b
MD5 c40f8f55fdb964a59cf592e5d3c9ddf8
BLAKE2b-256 4b13746678aa7d8cda93375a3a5ea1487a1657103b063e8b23c574ac38b7b3bf

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-win32.whl.

File metadata

  • Download URL: chebyfit-2026.1.18-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 49f1e534ce6aa8c32e0cb86e5004a77c942ff1a2f2a96e15f940248fef90566c
MD5 74e4576bd6f69a2a2f20e8ed4c04563e
BLAKE2b-256 06f06bf7fe6e9f9c73db3813cd2b1e5c6d0a511d943a6fddf45699e7489a84ef

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aeaf50d023312727b54000ab2ee21dbfc0eef8b21b13ad26c9a3e09ab09d5e5f
MD5 1467fec75f614b7957f89b78e1edad0e
BLAKE2b-256 d0916078bcfdf58c37e78e45c624d337848163bd54c42728d039a0b033927a2f

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 076a0e07349c3c4c19db6fe074893bec089be6f8eefb637ecfca3f4202f60529
MD5 0ed91e4ee686e23aebac1cfe42ee88cc
BLAKE2b-256 2bc3fdca6cb36e619289c1f8f0192074b5afba8ddb8051b0419bdf1ce3aa3682

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f9a4a6126b826f5bc8b732f61d350b1240a9b900e078d0667daeac33e02cf4b
MD5 20e160bde3e60fe9319c4d853ed46b9e
BLAKE2b-256 90cf86bcc02fc853c4be101bacd7d56897c16b797ae3fb6f3661066a4b640a8a

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 58eda96b11247f2581d07f5015084746b96582270e8128ef17a79a6827286729
MD5 5807992e5267e5e0c30ccaf326567e40
BLAKE2b-256 dadfd5ddafe32752f7962826f2ca3a62620a990a49c0cb5cefc55626a3c35513

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 552bd7488c3cc662205a873fed88165479f2c34c8a4a2a8f9dac319bb33019ee
MD5 64fb760ab43a63aa31562d4fe3d740b4
BLAKE2b-256 529b9718331765c36fa406999285a5d94656fb611f779bc4a5ca80811546b976

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ae4f7691cfbe2feeaf966dc602574504aa1d4e2550fb151b65fdfd587e1897b4
MD5 76c047105c0442b3e71a86b66e6ba025
BLAKE2b-256 b284d572058afd8740f7ee8e59e2239419971883f8286ebbc58c03d173701b52

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-win32.whl.

File metadata

  • Download URL: chebyfit-2026.1.18-cp314-cp314-win32.whl
  • Upload date:
  • Size: 26.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7e50248e08fbb1d8ec910daa5bf58cf4585b8a0cb944017a56f540d5705b660a
MD5 8457d67fd2d48fdff05979a13a045ef5
BLAKE2b-256 3cd6884c368aa5163a888f012ee853569d10e15fc1dfc1691ec6d57ec16032c7

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96b603bc82818c31e521febe60cd768af706c54964519088d5f55b7f76165232
MD5 a377cb84b74cabcbebb6c00bbce4e36f
BLAKE2b-256 292b79dce8183649894e9d824cb759c941b2ff5f7c0ff4ea0c4108be602e549a

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae609e11d3d95ea16a4eedab6e443290355ff61ccd27dbb85cff507528f9db19
MD5 4fbe8b73f8098f77bbfebf08ddb351f0
BLAKE2b-256 7efd163937255d75230132bb4d60e30af1f1f9fb85dd52db9e2acde84e887f87

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3c5672c5746ede32e7b989afc1cc81e22f6cfa01b15699cf35ef363fc97ce13
MD5 d008e43cf0db34353e3e2466fa43d76b
BLAKE2b-256 16e3d95b544cadb34a7dd08bc1095551f710962d53692a6c6a833b168d9ca2f9

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb0f196378d9458b8b2f45e008eb4133062765c2b565e9c438a661c9e6354c59
MD5 f189da94ac695598b6340a25b411528b
BLAKE2b-256 d135728d2fb25b3732801fd68db1f8838b5c004d9dbb04dffa2af413c807b90f

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cf265169ea19b209760fff83aed6e98bbb158f0937f0031a93a953a6c2a77283
MD5 ede06c548d044891047062438ac29c07
BLAKE2b-256 f1e1a26bc6fc23c060036f3f6ffa13e30a40deac0a6e3829befe578bc86955ea

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 39cb7cf3a8cfece02de1f47a8dc0ad47f698d586353225386c9ffa51746d899e
MD5 9d016e35ce7d26eeb7d6175aaa57e502
BLAKE2b-256 96898ccccf81c7d411157fa9bf46aed5bd50c4ee61165192a9418a81d54b5917

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-win32.whl.

File metadata

  • Download URL: chebyfit-2026.1.18-cp313-cp313-win32.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e52e065c67f0e2da45cf09094838ae6fcb2e25f3e757b6c722184b50d04c6aa
MD5 bbf192b052de64529bb77c3f663c9c2c
BLAKE2b-256 5a0a86660f368b74347eb3eb6c41f3ecfaeb026d880c1a2d0399e3a932c32270

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef5aacf782750de0bbf1beae1bafde4151662bdf60be44655a82ddce6779c715
MD5 6d8478645a6f4d393adc098d1d11e31a
BLAKE2b-256 f26ea64e60e4e379e5a02dc5c15234a35cf861735a5e434743184d925238c19c

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4e62cb864116b87b92e15fbf8151b2de41b1ae27581e99189745cb2c36d892a3
MD5 be05d173e4f48123bb9120c239e3419d
BLAKE2b-256 c8c0176a580d1ade3e692911e6f8800e3862decbd1af322151029839a1daa7e5

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40a7983f2a594f36ce241c9803ca75b1ec7238102a315ab387f8b2c469f2e6fd
MD5 1c026aca592d00d4283a7dd7f6d5eb10
BLAKE2b-256 45665b17b2fc06065871d6a83801d6af6cdebe13294a15ab96b72082492b811f

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a54ed410329345741d135f346fb28fab29a37b4969198adcf5a33cffe7ebaa6d
MD5 43d9498c9af6ccc2fca05e8ac3083b3c
BLAKE2b-256 6b36456664db7d57a5d7fbb9ff42690b3ee412a68ffe75e1598f8d5cdfa61ffe

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a516e9da9166ffddc0aba506de13e28e069150cde0530c96a7138d996240f048
MD5 35b66e7976c1bbd6fbae56e4bcaa8718
BLAKE2b-256 f7b1ca7db3bf1588d963c1500c7d9abc286e922aff3b1410922a6bb499d09117

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9665aefbf637700127881004f004f1a80607f9d037f4a6a5b29f94c4dba6a5c6
MD5 072fdde34bdd248c9059a7fbf1c570d6
BLAKE2b-256 2015aeb0164226ea41e7ebfc4ec15ce82a5cd5a7f7660d75a1227b5a8cc52ca9

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-win32.whl.

File metadata

  • Download URL: chebyfit-2026.1.18-cp312-cp312-win32.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e78b5834c3a0b306f4176820ae8ace8eb4cc7108f814b4974b79f687962d316
MD5 0006f22bc6b36b7073b57d56928bcc32
BLAKE2b-256 610fa390d579160bea07f4c92a6dcdfb4b37554f6efd3525c272c003bd54192a

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ec9977b36addcedc8f3a7f0a5ae9ec78f16b63cf36629c70da79566dcce86bc
MD5 0b2668a9baeae8a986e6f8fba1c82d59
BLAKE2b-256 7675e9ac8d8d350f8a07b8acc5d61150a2f4ff23f1a75e1e682e4c3c86eb5b41

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b2700879eb0785db1239708b9dc38715f360914e35b3fb9bf5c947c948bf9d26
MD5 4b365213ee58316c10a78589046c17c4
BLAKE2b-256 18936dc66aa8d45f8d02663f23d163e703691f0cb743465bdf5d78f852b77b84

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14710f72f30210a7ad3acee6e81d0fa6791773d27a6cea5482257c89134bdd4
MD5 23a4edcf90f208a8c84e432901d029dc
BLAKE2b-256 584d4aae6e4f2c2b55a893cb8ac00463d14c6206ccbcae59db15eb1cb5d4825f

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 803ef60ba6d0f8fded309c5fa635f28d9d2ec25f8f180b7b87f5fea304237d01
MD5 73e63e48e9e9ef01a99440c9db2f8f23
BLAKE2b-256 2bb8dcb6112461b4b5d719f801f2964c41dc9a9563de371f6c6c372e7fe5eafe

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2d1e3c0ce518decb877b17a421bc30a975f4fd160d4b3f9a81452a6ac993749b
MD5 49371afee86252148190a8b94397c690
BLAKE2b-256 e4fd8add7cda5aed9b976f35c407bf9ab21bf3532ef83365483e5848582d5fb4

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3825b62a5de3ce676fd068d5c1a7a878ae68a6591120b7ed4a606669b4ad8f08
MD5 25ca998cbf2148ef3e338a8ce86e8f29
BLAKE2b-256 b8859a148315a0366cdc0c987dd09d806cbb82297260dceea49927088ba79442

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-win32.whl.

File metadata

  • Download URL: chebyfit-2026.1.18-cp311-cp311-win32.whl
  • Upload date:
  • Size: 25.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce7cf2d00bc060c6347fe7715382b2abd18c285307591901171516d0b2231b43
MD5 26b19a3857421613abd9bd20928ba379
BLAKE2b-256 c5cdc93df7949401c5b0748b21e8d1d6165218678f3db99839b53d03116ce4b5

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a824bc39b08036ecb149c1d3b9bd6f3fb1fafc172f03e2956bbc0264d03ecfa
MD5 ce7974b59a8163aa1d705a38a3d5652a
BLAKE2b-256 a7fdd0007f2cf8eebf8605bc1464546588ddae25024bbdefb7da3648046bf7fa

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d07f13489da0eee11bf87052abe559133aa5ae04ed792d1171abec063164ce7a
MD5 3243b8f35a627c68d43a48b6e25d689c
BLAKE2b-256 b57081efc8793d2c20906093dafb4fabf8b24d9ad8d47d5c2dca3916807fcda0

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a3f1a5bb35e46b2d9d6047eda8312a64a63742ceb44661c78fecb9f1b3d06fe
MD5 bda2acb736e029b98bb5f6d05297682a
BLAKE2b-256 4e726616f95f13eed217dae2d6eafd541744ff8fd47b07851f83ff48626a65e0

See more details on using hashes here.

File details

Details for the file chebyfit-2026.1.18-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chebyfit-2026.1.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3774b58a8c6dc7441ed1a3329f74e60573155b1965a7e9693c42ff11ee83845
MD5 e1d27d04f701135411348efb37e9f1d5
BLAKE2b-256 cd4191c07eb3fe2dbc6aba5266c1a4a8840d4d5807ce9e56123474fe892ce611

See more details on using hashes here.

Supported by

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