-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKG-INFO
43 lines (32 loc) · 1.53 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Metadata-Version: 1.1
Name: jBessel
Version: 0.1
Summary: Compute Bessel functions of the first kind (J) for integers order n (0,1,2)
Home-page: https://github.com/daron1337/jBessel
Author: Simone Manini
Author-email: Simone Manini <[email protected]>
License: BSD
Description: jBessel
~~~~~~~~~
This cython module computes bessel functions of the first
kind (J) for integers order n (0,1,2).
Once it has been installed, you can import it as a standard python module.
Bessel functions of the first kind, denoted as Ja(x), are solutions of Bessel's
differential equation that are finite at the origin (x = 0) for integer a, and
diverge as x approaches zero for negative non-integer a. The solution type (e.g.,
integer or non-integer) and normalization of Ja(x) are defined by its properties
below. It is possible to define the function by its Taylor series expansion around
x = 0.
Installation requirements:
Cython (http://cython.org/#download)
To install, run::
python setup.py install
Then simply start a python session and do::
from Bessel import jBessel
Platform: Linux / MacOsX
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Programming Language :: Cython
Programming Language :: Python