95 double* mat_cos_legmp(
int np,
int nt) {
97 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 98 static double* tab[NMAX] ;
99 static int nb_dejafait = 0 ;
100 static int np_dejafait[NMAX] ;
102 static int nt_dejafait[NMAX] ;
105 int i, indice, j, j2, m, l ;
110 for ( i=0 ; i < nb_dejafait ; i++ ) {
111 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
117 if ( nb_dejafait >= NMAX ) {
118 cout <<
"mat_cos_legmp: nb_dejafait >= NMAX : " 119 << nb_dejafait <<
" <-> " << NMAX << endl ;
123 indice = nb_dejafait ;
125 np_dejafait[indice] = np ;
126 nt_dejafait[indice] = nt ;
128 tab[indice] =
new double[(np/2+1)*nt*nt] ;
136 int nt2m1 = nt2 - 1 ;
144 double* yy =
new double[nt2] ;
145 double* cost =
new double[nt*nt2] ;
150 double dt = M_PI / double(nt2-1) ;
151 for (j=0; j<nt; j++) {
152 for (j2=0; j2<nt2; j2++) {
153 double theta = j2*dt ;
154 cost[nt2*j + j2] =
cos( j * theta ) ;
164 if (np == 1) m_max = 0 ;
166 for (m=0; m <= m_max ; m+=2) {
170 double* leg = legendre_norm(m, nt) ;
172 for (l=m; l<nt; l++) {
174 int parite = 1 - 2*((l-m)%2) ;
175 for (j=0; j<nt; j++) {
179 for (j2=0; j2<nt; j2++) {
180 yy[nt2m1-j2] = cost[nt2*j + j2] *
181 leg[nt2* (l-m) + 2*j2] ;
184 for (j2 = nt; j2<nt2; j2++) {
185 yy[nt2m1-j2] = cost[nt2*j + j2] *
186 parite * leg[nt2* (l-m) + 2*nt2 -2 -2*j2] ;
191 cfrcheb(deg, deg, yy, deg, yy) ;
192 tab[indice][ nt*nt* m/2 + nt*l + j] =
193 int1d_cheb(nt2, yy) ;
Cmp cos(const Cmp &)
Cosine.