Skip to main content

Deconvoluted makes performing integral transforms simple and pythonic!

Project description

Deconvoluted

https://img.shields.io/pypi/v/deconvoluted.svg https://img.shields.io/travis/tbuli/deconvoluted.svg Documentation Status

Deconvoluted makes performing numerical integral transforms simple and pythonic!

Features

Fourier Transforms

As a first example, let’s perform a Fourier transform:

t = np.linspace(0, 10, 201)
f = np.sin(3 * 2 * np.pi * t)
F, nu = fourier_transform(f, t)

By default, Fourier transforms use Fourier coefficients a=0, b=-2pi. Using another convention is simple:

F, omega = fourier_transform(f, t, convention=(-1, 1))

As a physicist myself, I therefore switch the labelling of the output from nu for frequency, to omega for angular frequency.

Performing multidimensional transforms is just as easy. For example:

F_pq, p, q = fourier_transform(f_xy, x, y)

transforms both x and y at the same time. Transforming only one of the two variables can be done simply by setting those that shouldn’t transform to None:

F_py, p = fourier_transform(f_xy, x, None)
F_xq, q = fourier_transform(f_xy, None, y)

See the documentation for more examples!

History

0.1.1 (2019-06-05)

  • Implemented support for different FT conventions.

0.1.0 (2019-06-03)

  • First release on PyPI.

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

deconvoluted-0.1.1.tar.gz (11.5 kB view hashes)

Uploaded Source

Built Distribution

deconvoluted-0.1.1-py2.py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 2 Python 3

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