Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for u01 (0.01 sec)

  1. test/literal.go

    	assert(i32 == -i31, "i32")
    	assert(i33 == -i34, "i33")
    	assert(-(i35+1) == i36, "i35")
    	assert(i33 == (1<<63)-1, "i33 size")
    
    	// uint8
    	var u00 uint8 = 0
    	var u01 uint8 = 1
    	var u02 uint8 = 255
    	var u03 uint8 = +255
    	assert(u01 == u00+1, "u01")
    	assert(u02 == u03, "u02")
    	assert(u03 == (1<<8)-1, "u03 size")
    
    	// uint16
    	var u10 uint16 = 0
    	var u11 uint16 = 1
    	var u12 uint16 = 65535
    	var u13 uint16 = +65535
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  2. src/math/j0.go

    //         We use the following function to approximate y0,
    //              y0(x) = U(z)/V(z) + (2/pi)*(j0(x)*ln(x)), z= x**2
    //         where
    //              U(z) = u00 + u01*z + ... + u06*z**6
    //              V(z) = 1  + v01*z + ... + v04*z**4
    //         with absolute approximation error bounded by 2**-72.
    //         Note: For tiny x, U/V = u0 and j0(x)~1, hence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.6K bytes
    - Viewed (0)
  3. src/math/j1.go

    	const (
    		TwoM54 = 1.0 / (1 << 54)             // 2**-54 0x3c90000000000000
    		Two129 = 1 << 129                    // 2**129 0x4800000000000000
    		U00    = -1.96057090646238940668e-01 // 0xBFC91866143CBC8A
    		U01    = 5.04438716639811282616e-02  // 0x3FA9D3C776292CD1
    		U02    = -1.91256895875763547298e-03 // 0xBF5F55E54844F50F
    		U03    = 2.35252600561610495928e-05  // 0x3EF8AB038FA6B88E
    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