109 double* mat_cosi_legip(
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_cosp_legpp: 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] ;
151 int nt2m1 = nt2 - 1 ;
159 double* yy =
new double[nt2] ;
160 double* cost =
new double[nt*nt2] ;
165 double dt = M_PI / double(2*(nt2-1)) ;
166 for (j=0; j<nt-1; j++) {
167 for (j2=0; j2<nt2; j2++) {
168 double theta = j2*dt ;
169 cost[nt2*j + j2] =
cos( (2*j+1) * theta ) ;
179 if (np == 1) m_max = 0 ;
181 for (m=0; m <= m_max ; m+=2) {
185 double* leg = legendre_norm(m, nt) ;
187 for (l=m/2; l<nt-1; l++) {
191 for (j=0; j<nt-1; j++) {
195 for (j2=0; j2<nt2; j2++) {
196 yy[nt2m1-j2] = cost[nt2*j + j2] *
197 leg[nt2* (ll-m) + j2] ;
202 cfrchebp(deg, deg, yy, deg, yy) ;
203 tab[indice][ nt*nt* m/2 + nt*l + j] =
204 2.*int1d_chebp(nt2, yy) ;
Cmp cos(const Cmp &)
Cosine.