98 double* mat_legii_sinp(
int np,
int nt) {
100 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 101 static double* tab[NMAX] ;
102 static int nb_dejafait = 0 ;
103 static int np_dejafait[NMAX] ;
105 static int nt_dejafait[NMAX] ;
108 int i, indice, j, j2, m, l ;
114 for ( i=0 ; i < nb_dejafait ; i++ ) {
115 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
121 if ( nb_dejafait >= NMAX ) {
122 cout <<
"mat_legii_sinp: nb_dejafait >= NMAX : " 123 << nb_dejafait <<
" <-> " << NMAX << endl ;
127 indice = nb_dejafait ;
129 np_dejafait[indice] = np ;
130 nt_dejafait[indice] = nt ;
132 tab[indice] =
new double[(np/2+1)*nt*nt] ;
147 double* yy =
new double[nt2] ;
154 int m_max = (np == 1) ? 1 : np-1 ;
156 for (m=1; m <= m_max ; m+=2) {
160 double* leg = legendre_norm(m, nt) ;
163 for (l=(m+1)/2; l<nt-1; l++) {
167 for (j2=0; j2<nt2; j2++) {
168 yy[j2] = leg[nt2* (ll-m) + j2] ;
173 cftsinp(deg, deg, yy, deg, yy) ;
176 for (j=0; j<nt-1; j++) {
177 tab[indice][ nt*nt* ((m-1)/2) + nt*j + l] = yy[j] ;