aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_spherical_harmonics/sph_radial.h
diff options
context:
space:
mode:
authorFranz Zotter <fzotter@users.sourceforge.net>2009-10-11 21:22:05 +0000
committerFranz Zotter <fzotter@users.sourceforge.net>2009-10-11 21:22:05 +0000
commit8b5c07f8055d6888459fd662c85f706ef84e0471 (patch)
treefe8a8253e5ed9eed2ab05c1a4355e8ed7d9dd916 /src/mtx_spherical_harmonics/sph_radial.h
parent91652dcae06621b96f44c2a5af9ec7456b7e4be9 (diff)
added [mtx_spherical_radial], the radial functions of the spherical base-solutions
svn path=/trunk/externals/iem/iemmatrix/; revision=12577
Diffstat (limited to 'src/mtx_spherical_harmonics/sph_radial.h')
-rw-r--r--src/mtx_spherical_harmonics/sph_radial.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mtx_spherical_harmonics/sph_radial.h b/src/mtx_spherical_harmonics/sph_radial.h
new file mode 100644
index 0000000..43661ce
--- /dev/null
+++ b/src/mtx_spherical_harmonics/sph_radial.h
@@ -0,0 +1,26 @@
+/*
+ * Recursive computation of (arbitrary degree) spherical Bessel/Neumann/Hankel functions,
+ * according to Gumerov and Duraiswami,
+ * "The Fast Multipole Methods for the Helmholtz Equation in Three Dimensions",
+ * Elsevier, 2005.
+ *
+ * Implementation by Franz Zotter, Institute of Electronic Music and Acoustics
+ * (IEM), University of Music and Dramatic Arts (KUG), Graz, Austria
+ * http://iem.at/Members/zotter, 2007.
+ *
+ * This code is published under the Gnu General Public License, see
+ * "LICENSE.txt"
+ */
+
+#ifndef __SPH_RADIAL_H__
+#define __SPH_RADIAL_H__
+
+void sphBessel (double x, double *y, int n);
+
+void sphNeumann (double x, double *y, int n);
+
+void sphBesselDiff (double x, double *y, int n);
+
+void sphNeumannDiff (double x, double *y, int n);
+
+#endif // __SPH_RADIAL_H__