Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for coshe5 (0.13 sec)

  1. src/math/cosh_s390x.s

    // Minimax polynomial approximations
    DATA coshe2<>+0(SB)/8, $0.500000000000004237e+00
    GLOBL coshe2<>+0(SB), RODATA, $8
    DATA coshe3<>+0(SB)/8, $0.166666666630345592e+00
    GLOBL coshe3<>+0(SB), RODATA, $8
    DATA coshe4<>+0(SB)/8, $0.416666664838056960e-01
    GLOBL coshe4<>+0(SB), RODATA, $8
    DATA coshe5<>+0(SB)/8, $0.833349307718286047e-02
    GLOBL coshe5<>+0(SB), RODATA, $8
    DATA coshe6<>+0(SB)/8, $0.138926439368309441e-02
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/code5.txt

    Russ Cox <******@****.***> 1654274698 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 20:47:52 UTC 2022
    - 96 bytes
    - Viewed (0)
  3. src/math/cmplx/cmath_test.go

    		}
    	}
    }
    func TestCosh(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Cosh(vc[i]); !cSoclose(cosh[i], f, 2e-15) {
    			t.Errorf("Cosh(%g) = %g, want %g", vc[i], f, cosh[i])
    		}
    	}
    	for _, v := range coshSC {
    		if f := Cosh(v.in); !cAlike(v.want, f) {
    			t.Errorf("Cosh(%g) = %g, want %g", v.in, f, v.want)
    		}
    		if math.IsNaN(imag(v.in)) || math.IsNaN(imag(v.want)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  4. src/regexp/syntax/perl_groups.go

    	0x30, 0x39,
    	0x41, 0x46,
    	0x61, 0x66,
    }
    
    var posixGroup = map[string]charGroup{
    	`[:alnum:]`:   {+1, code4},
    	`[:^alnum:]`:  {-1, code4},
    	`[:alpha:]`:   {+1, code5},
    	`[:^alpha:]`:  {-1, code5},
    	`[:ascii:]`:   {+1, code6},
    	`[:^ascii:]`:  {-1, code6},
    	`[:blank:]`:   {+1, code7},
    	`[:^blank:]`:  {-1, code7},
    	`[:cntrl:]`:   {+1, code8},
    	`[:^cntrl:]`:  {-1, code8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/antLoadfileResources/gradle.manifesto.txt

    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/antLoadfileResources/gradle.manifesto.txt

    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/groovy/antLoadfileResources/gradle.manifesto.txt

    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  8. src/math/sinh.go

    	}
    
    	if sign {
    		temp = -temp
    	}
    	return temp
    }
    
    // Cosh returns the hyperbolic cosine of x.
    //
    // Special cases are:
    //
    //	Cosh(±0) = 1
    //	Cosh(±Inf) = +Inf
    //	Cosh(NaN) = NaN
    func Cosh(x float64) float64 {
    	if haveArchCosh {
    		return archCosh(x)
    	}
    	return cosh(x)
    }
    
    func cosh(x float64) float64 {
    	x = Abs(x)
    	if x > 21 {
    		return Exp(x) * 0.5
    	}
    	ex := Exp(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/math/cmplx/sin.go

    // Complex hyperbolic cosine
    //
    // DESCRIPTION:
    //
    // ccosh(z) = cosh x  cos y + i sinh x sin y .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    IEEE      -10,+10     30000       2.9e-16     8.1e-17
    
    // Cosh returns the hyperbolic cosine of x.
    func Cosh(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/tests/antLoadfile.out

    Customer collaboration  over contract negotiation
    Responding to change over following a plan
     *** gradle.manifesto.txt ***
    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
Back to top