111 double* mat_legpp_cosp(
int np,
int nt) {
113 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 114 static double* tab[NMAX] ;
115 static int nb_dejafait = 0 ;
116 static int np_dejafait[NMAX] ;
118 static int nt_dejafait[NMAX] ;
121 int i, indice, j, j2, m, l ;
127 for ( i=0 ; i < nb_dejafait ; i++ ) {
128 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
134 if ( nb_dejafait >= NMAX ) {
135 cout <<
"mat_legpp_cosp: nb_dejafait >= NMAX : " 136 << nb_dejafait <<
" <-> " << NMAX << endl ;
140 indice = nb_dejafait ;
142 np_dejafait[indice] = np ;
143 nt_dejafait[indice] = nt ;
145 tab[indice] =
new double[(np/2+1)*nt*nt] ;
160 double* yy =
new double[nt2] ;
168 if (np == 1) m_max = 0 ;
170 for (m=0; m <= m_max ; m+=2) {
174 double* leg = legendre_norm(m, nt) ;
176 for (l=m/2; l<nt; l++) {
180 for (j2=0; j2<nt2; j2++) {
181 yy[j2] = leg[nt2* (ll-m) + j2] ;
186 cftcosp(deg, deg, yy, deg, yy) ;
189 for (j=0; j<nt; j++) {
190 tab[indice][ nt*nt* m/2 + nt*j + l] = yy[j] ;