111 double* mat_cossinc_leg(
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_cossinc_leg: 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] ;
153 int nt2m1 = nt2 - 1 ;
161 double* yy =
new double[nt2] ;
162 double* cost =
new double[nt*nt2] ;
163 double* sint =
new double[nt*nt2] ;
168 double dt = M_PI / double((nt2-1)) ;
169 for (j=0; j<nt; j++) {
170 for (j2=0; j2<nt2; j2++) {
171 double theta = j2*dt ;
172 cost[nt2*j + j2] =
cos( j * theta ) ;
173 sint[nt2*j + j2] =
sin( j * theta ) ;
182 for (m=0; m < np/2+1 ; m++) {
186 double* leg = legendre_norm(m, nt) ;
191 for (l=m; l<nt; l++) {
193 int parite = 1 - 2*((l-m)%2) ;
195 for (j=0; j<nt; j++) {
199 for (j2=0; j2<nt; j2++) {
200 yy[nt2m1-j2] = cost[nt2*j + j2] *
201 leg[nt2* (l-m) + 2*j2] ;
204 for (j2=nt; j2<nt2; j2++) {
205 yy[nt2m1-j2] = cost[nt2*j + j2] *
206 parite * leg[nt2* (l-m) + 2*nt2 -2 -2*j2] ;
211 cfrcheb(deg, deg, yy, deg, yy) ;
212 tab[indice][ nt*nt* m + nt*l + j] =
213 int1d_cheb(nt2, yy) ;
226 for (l=m; l<nt; l++) {
228 int parite = 1 - 2*((l-m)%2) ;
230 for (j=0; j<nt; j++) {
234 for (j2=0; j2<nt; j2++) {
235 yy[nt2m1-j2] = sint[nt2*j + j2] *
236 leg[nt2* (l-m) + 2*j2] ;
240 for (j2=nt; j2<nt2; j2++) {
241 yy[nt2m1-j2] = sint[nt2*j + j2] *
242 parite * leg[nt2* (l-m) + 2*nt2 -2 - 2*j2] ;
248 cfrcheb(deg, deg, yy, deg, yy) ;
250 tab[indice][ nt*nt* m + nt*l + j] =
251 int1d_cheb(nt2, yy) ;
Cmp cos(const Cmp &)
Cosine.
Cmp sin(const Cmp &)
Sine.