93 double* mat_legmi_sin(
int np,
int nt) {
95 #define NMAX 30 // Nombre maximun de couples(np,nt) differents 96 static double* tab[NMAX] ;
97 static int nb_dejafait = 0 ;
98 static int np_dejafait[NMAX] ;
100 static int nt_dejafait[NMAX] ;
102 int i, indice, j, j2, m, l ;
107 for ( i=0 ; i < nb_dejafait ; i++ ) {
108 if ( (np_dejafait[i] == np) && (nt_dejafait[i] == nt) ) indice = i ;
114 if ( nb_dejafait >= NMAX ) {
115 cout <<
"mat_legii_sinp: nb_dejafait >= NMAX : " 116 << nb_dejafait <<
" <-> " << NMAX << endl ;
120 indice = nb_dejafait ;
122 np_dejafait[indice] = np ;
123 nt_dejafait[indice] = nt ;
125 tab[indice] =
new double[(np/2+1)*nt*nt] ;
140 double* yy =
new double[nt2] ;
147 int m_max = (np == 1) ? 1 : np-1 ;
149 for (m=1; m <= m_max ; m+=2) {
153 double* leg = legendre_norm(m, nt) ;
156 for (l=m; l<nt-1; l++) {
158 int parite = 1 - 2*((l-m)%2) ;
160 for (j2=0; j2<nt; j2++) {
161 yy[j2] = leg[nt2* (l-m) + 2*j2] ;
164 for (j2=nt; j2<nt2; j2++) {
165 yy[j2] = parite * leg[nt2* (l-m) + 2*nt2 -2 - 2*j2] ;
170 cftsin(deg, deg, yy, deg, yy) ;
173 for (j=0; j<nt-1; j++) {
174 tab[indice][ nt*nt*((m-1)/2) + nt*j + l] = yy[j] ;