aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_spherical_harmonics/sph_radial.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mtx_spherical_harmonics/sph_radial.c')
-rw-r--r--src/mtx_spherical_harmonics/sph_radial.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mtx_spherical_harmonics/sph_radial.c b/src/mtx_spherical_harmonics/sph_radial.c
index ec3536e..32e86bb 100644
--- a/src/mtx_spherical_harmonics/sph_radial.c
+++ b/src/mtx_spherical_harmonics/sph_radial.c
@@ -44,9 +44,7 @@ void sphBessel (double x, double *y, int n) { //TODO: small values!
y[0] = (x<EPS)?1.0:sin(x)/x;
if (n>=1)
y[1] = -cos(x)/x + y[0]/x;
- post("before %f %f %f",y[0],y[1],y[2]);
radialRecurrence (x,y,n);
- post("after %f %f %f",y[0],y[1],y[2]);
}
void sphNeumann (double x, double *y, int n) {