109 double* mat_legip_cosi(
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 ;
125 for ( i=0 ; i < nb_dejafait ; i++ ) {
126 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
132 if ( nb_dejafait >= NMAX ) {
133 cout <<
"mat_legpp_cosp: nb_dejafait >= NMAX : " 134 << nb_dejafait <<
" <-> " << NMAX << endl ;
138 indice = nb_dejafait ;
140 np_dejafait[indice] = np ;
141 nt_dejafait[indice] = nt ;
143 tab[indice] =
new double[(np/2+1)*nt*nt] ;
158 double* yy =
new double[nt2] ;
166 if (np == 1) m_max = 0 ;
168 for (m=0; m <= m_max ; m+=2) {
172 double* leg = legendre_norm(m, nt) ;
174 for (l=m/2; l<nt-1; l++) {
178 for (j2=0; j2<nt2; j2++) {
179 yy[j2] = leg[nt2* (ll-m) + j2] ;
184 cftcosi(deg, deg, yy, deg, yy) ;
187 for (j=0; j<nt; j++) {
188 tab[indice][ nt*nt* m/2 + nt*j + l] = yy[j] ;