99 double* mat_sinp_legii(
int np,
int nt) {
101 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 102 static double* tab[NMAX] ;
103 static int nb_dejafait = 0 ;
104 static int np_dejafait[NMAX] ;
106 static int nt_dejafait[NMAX] ;
109 int i, indice, j, j2, m, l ;
115 for ( i=0 ; i < nb_dejafait ; i++ ) {
116 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
122 if ( nb_dejafait >= NMAX ) {
123 cout <<
"mat_sinp_legii: nb_dejafait >= NMAX : " 124 << nb_dejafait <<
" <-> " << NMAX << endl ;
128 indice = nb_dejafait ;
130 np_dejafait[indice] = np ;
131 nt_dejafait[indice] = nt ;
133 tab[indice] =
new double[(np/2+1)*nt*nt] ;
141 int nt2m1 = nt2 - 1 ;
149 double* yy =
new double[nt2] ;
150 double* sint =
new double[nt*nt2];
155 double dt = M_PI / double(2*(nt2-1)) ;
156 for (j=0; j<nt-1; j++) {
157 for (j2=0; j2<nt2; j2++) {
158 double theta = j2*dt ;
159 sint[nt2*j + j2] =
sin( 2*j * theta ) ;
168 int m_max = (np == 1) ? 1 : np-1 ;
170 for (m=1; m <= m_max ; m+=2) {
174 double* leg = legendre_norm(m, nt) ;
176 for (l=(m+1)/2; l<nt-1; l++) {
180 for (j=0; j<nt-1; j++) {
185 for (j2=0; j2<nt2; j2++) {
186 yy[nt2m1-j2] = sint[nt2*j + j2]
187 * leg[nt2* (ll-m) + j2] ;
192 cfrchebp(deg, deg, yy, deg, yy) ;
193 tab[indice][ nt*nt* ((m-1)/2) + nt*l + j] =
194 2.*int1d_chebp(nt2, yy) ;
Cmp sin(const Cmp &)
Sine.