96 double* mat_legmp_cos(
int np,
int nt) {
98 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 99 static double* tab[NMAX] ;
100 static int nb_dejafait = 0 ;
101 static int np_dejafait[NMAX] ;
103 static int nt_dejafait[NMAX] ;
106 int i, indice, j, j2, m, l ;
111 for ( i=0 ; i < nb_dejafait ; i++ ) {
112 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
118 if ( nb_dejafait >= NMAX ) {
119 cout <<
"mat_legpp_cosp: nb_dejafait >= NMAX : " 120 << nb_dejafait <<
" <-> " << NMAX << endl ;
124 indice = nb_dejafait ;
126 np_dejafait[indice] = np ;
127 nt_dejafait[indice] = nt ;
129 tab[indice] =
new double[(np/2+1)*nt*nt] ;
144 double* yy =
new double[nt2] ;
152 if (np == 1) m_max = 0 ;
154 for (m=0; m <= m_max ; m+=2) {
158 double* leg = legendre_norm(m, nt) ;
160 for (l=m; l<nt; l++) {
162 int parite = 1 - 2*((l-m)%2) ;
164 for (j2=0; j2<nt; j2++) {
165 yy[j2] = leg[nt2* (l-m) + 2*j2] ;
168 for (j2=nt; j2<nt2; j2++) {
169 yy[j2] = parite * leg[nt2* (l-m) + 2*nt2 -2 - 2*j2] ;
174 cftcos(deg, deg, yy, deg, yy) ;
177 for (j=0; j<nt; j++) {
178 tab[indice][ nt*nt* m/2 + nt*j + l] = yy[j] ;