Home | History | Annotate | Download | only in Math

Lines Matching defs:aT

6  * Developed at SunPro, a Sun Microsystems, Inc. business.

55 static const double aT[] = {
112 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
113 s1 = z*(aT[0]+w*(aT[2]+w*(aT[4]+w*(aT[6]+w*(aT[8]+w*aT[10])))));
114 s2 = w*(aT[1]+w*(aT[3]+w*(aT[5]+w*(aT[7]+w*aT[9]))));