109 double* mat_legi_cossinci(
int np,
int nt) {
111 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 112 static double* tab[NMAX] ;
113 static int nb_dejafait = 0 ;
114 static int np_dejafait[NMAX] ;
116 static int nt_dejafait[NMAX] ;
119 int i, indice, j, j2, m, l ;
124 for ( i=0 ; i < nb_dejafait ; i++ ) {
125 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
131 if ( nb_dejafait >= NMAX ) {
132 cout <<
"mat_legi_cossinci: nb_dejafait >= NMAX : " 133 << nb_dejafait <<
" <-> " << NMAX << endl ;
137 indice = nb_dejafait ;
139 np_dejafait[indice] = np ;
140 nt_dejafait[indice] = nt ;
142 tab[indice] =
new double[(np/2+1)*nt*nt] ;
157 double* yy =
new double[nt2] ;
164 for (m=0; m < np/2+1 ; m++) {
168 double* leg = legendre_norm(m, nt) ;
173 for (l=m/2; l<nt-1; l++) {
177 for (j2=0; j2<nt2; j2++) {
178 yy[j2] = leg[nt2* (ll-m) + j2] ;
183 cftcosi(deg, deg, yy, deg, yy) ;
186 for (j=0; j<nt; j++) {
187 tab[indice][ nt*nt* m + nt*j + l] = yy[j] ;
199 for (l=(m+1)/2; l<nt-1; l++) {
204 for (j2=0; j2<nt2; j2++) {
205 yy[j2] = leg[nt2* (ll-m) + j2] ;
210 cftsinp(deg, deg, yy, deg, yy) ;
213 for (j=0; j<nt-1; j++) {
214 tab[indice][ nt*nt* m + nt*j + l] = yy[j] ;