Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __ieee754_j0 (0.11 sec)

  1. src/math/j0.go

    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_j0(x), __ieee754_y0(x)
    // Bessel function of the first and second kinds of order zero.
    // Method -- j0(x):
    //      1. For tiny x, we use j0(x) = 1 - x**2/4 + x**4/64 - ...
    //      2. Reduce x to |x| since j0(x)=j0(-x),  and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  2. src/math/jn.go

    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_jn(n, x), __ieee754_yn(n, x)
    // floating point Bessel's function of the 1st and 2nd kind
    // of order n
    //
    // Special cases:
    //      y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/math/j1.go

    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_j1(x), __ieee754_y1(x)
    // Bessel function of the first and second kinds of order one.
    // Method -- j1(x):
    //      1. For tiny x, we use j1(x) = x/2 - x**3/16 + x**5/384 - ...
    //      2. Reduce x to |x| since j1(x)=-j1(-x),  and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
Back to top