aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_sh/legendre_a.h
diff options
context:
space:
mode:
authorFranz Zotter <fzotter@users.sourceforge.net>2009-01-14 10:58:32 +0000
committerFranz Zotter <fzotter@users.sourceforge.net>2009-01-14 10:58:32 +0000
commit92b9deaf8d7c2a96c3977e1204341d6b6feb1fc1 (patch)
tree6e17422343f2a63bba88422d02e5d06fdf8d7baf /src/mtx_sh/legendre_a.h
parent96987170c95a18b779cd2bfc316d88d754db4b8e (diff)
renamed [mtx_sh] to [mtx_spherical_harmonics].
svn path=/trunk/externals/iem/iemmatrix/; revision=10549
Diffstat (limited to 'src/mtx_sh/legendre_a.h')
-rw-r--r--src/mtx_sh/legendre_a.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/mtx_sh/legendre_a.h b/src/mtx_sh/legendre_a.h
deleted file mode 100644
index f1d0229..0000000
--- a/src/mtx_sh/legendre_a.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
-
- Evaluates all associated legendre functions
- at the angles theta up to the order nmax
- using the three-term recurrence of the Legendre functions.
- P has dimensions length(theta) x (nmax+1)(nmax+2)
-
- 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, 2008.
-
- This code is published under the Gnu General Public License, see
- "LICENSE.txt"
-
-*/
-
-
-#ifndef _legendre_a_h__
-#define _legendre_a_h__
-#include <math.h>
-#include <stdlib.h>
-
-typedef struct _LegendreWorkSpace_
-{
- size_t nmax;
- size_t l;
- double *p;
-} LegendreWorkSpace;
-
-LegendreWorkSpace *legendre_a_alloc(const size_t nmax, const size_t l);
-
-void legendre_a_free(LegendreWorkSpace *wl);
-
-void legendre_a(double *theta, LegendreWorkSpace *wl);
-
-#endif