106 double* mat_leg_cossinc(
int np,
int nt) {
108 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 109 static double* tab[NMAX] ;
110 static int nb_dejafait = 0 ;
111 static int np_dejafait[NMAX] ;
113 static int nt_dejafait[NMAX] ;
116 int i, indice, j, j2, m, l ;
121 for ( i=0 ; i < nb_dejafait ; i++ ) {
122 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
128 if ( nb_dejafait >= NMAX ) {
129 cout <<
"mat_legp_cossinc: nb_dejafait >= NMAX : " 130 << nb_dejafait <<
" <-> " << NMAX << endl ;
134 indice = nb_dejafait ;
136 np_dejafait[indice] = np ;
137 nt_dejafait[indice] = nt ;
139 tab[indice] =
new double[(np/2+1)*nt*nt] ;
154 double* yy =
new double[nt2] ;
161 for (m=0; m < np/2+1 ; m++) {
165 double* leg = legendre_norm(m, nt) ;
170 for (l=m; l<nt; l++) {
172 int parite = 1 - 2*((l-m)%2) ;
174 for (j2=0; j2<nt; j2++) {
175 yy[j2] = leg[nt2* (l-m) + 2*j2] ;
178 for (j2=nt; j2<nt2; j2++) {
179 yy[j2] = parite * leg[nt2* (l-m) + 2*nt2 -2 - 2*j2] ;
184 cftcos(deg, deg, yy, deg, yy) ;
187 for (j=0; j<nt; j++) {
188 tab[indice][ nt*nt* m + nt*j + l] = yy[j] ;
200 for (l=m; l<nt; l++) {
202 int parite = 1 - 2*((l-m)%2) ;
204 for (j2=0; j2<nt; j2++) {
205 yy[j2] = leg[nt2* (l-m) + 2*j2] ;
208 for (j2=nt; j2<nt2; j2++) {
209 yy[j2] = parite * leg[nt2* (l-m) + 2*nt2 -2 - 2*j2] ;
215 cftsin(deg, deg, yy, deg, yy) ;
218 for (j=0; j<nt-1; j++) {
219 tab[indice][ nt*nt* m + nt*j + l] = yy[j] ;