112 double* mat_legpi_sini(
int np,
int nt) {
114 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 115 static double* tab[NMAX] ;
116 static int nb_dejafait = 0 ;
117 static int np_dejafait[NMAX] ;
119 static int nt_dejafait[NMAX] ;
122 int i, indice, j, j2, m, l ;
128 for ( i=0 ; i < nb_dejafait ; i++ ) {
129 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
135 if ( nb_dejafait >= NMAX ) {
136 cout <<
"mat_legpp_cosp: nb_dejafait >= NMAX : " 137 << nb_dejafait <<
" <-> " << NMAX << endl ;
141 indice = nb_dejafait ;
143 np_dejafait[indice] = np ;
144 nt_dejafait[indice] = nt ;
146 tab[indice] =
new double[(np/2+1)*nt*nt];
161 double* yy =
new double[nt2];
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) ;
177 for (l=(m-1)/2; l<nt-1; l++) {
181 for (j2=0; j2<nt2; j2++) {
182 yy[j2] = leg[nt2* (ll-m) + j2] ;
187 cftsini(deg, deg, yy, deg, yy) ;
190 for (j=0; j<nt-1; j++) {
191 tab[indice][ nt*nt* ((m-1)/2) + nt*j + l] = yy[j] ;