Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for qr2 (0.01 sec)

  1. src/math/j1.go

    	return 1 + r/s
    }
    
    // For x >= 8, the asymptotic expansions of qone is
    //      3/8 s - 105/1024 s**3 - ..., where s = 1/x.
    // We approximate qone by
    //      qone(x) = s*(0.375 + (R/S))
    // where R = qr1*s**2 + qr2*s**4 + ... + qr5*s**10
    //       S = 1 + qs1*s**2 + ... + qs6*s**12
    // and
    //      | qone(x)/s -0.375-R/S | <= 2**(-61.13)
    
    // for x in [inf, 8] = 1/[0,0.125]
    var q1R8 = [6]float64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. src/math/j0.go

    }
    
    // For x >= 8, the asymptotic expansions of qzero is
    //      -1/8 s + 75/1024 s**3 - ..., where s = 1/x.
    // We approximate pzero by
    //      qzero(x) = s*(-1.25 + (R/S))
    // where R = qR0 + qR1*s**2 + qR2*s**4 + ... + qR5*s**10
    //       S = 1 + qS0*s**2 + ... + qS5*s**12
    // and
    //      | qzero(x)/s +1.25-R/S | <= 2**(-61.22)
    
    // for x in [inf, 8]=1/[0,0.125]
    var q0R8 = [6]float64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
Back to top