Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for satan (0.04 sec)

  1. src/math/atan.go

    }
    
    // Atan returns the arctangent, in radians, of x.
    //
    // Special cases are:
    //
    //	Atan(±0) = ±0
    //	Atan(±Inf) = ±Pi/2
    func Atan(x float64) float64 {
    	if haveArchAtan {
    		return archAtan(x)
    	}
    	return atan(x)
    }
    
    func atan(x float64) float64 {
    	if x == 0 {
    		return x
    	}
    	if x > 0 {
    		return satan(x)
    	}
    	return -satan(-x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/math/asin.go

    	}
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	if x > 1 {
    		return NaN() // special case
    	}
    
    	temp := Sqrt(1 - x*x)
    	if x > 0.7 {
    		temp = Pi/2 - satan(temp/x)
    	} else {
    		temp = satan(x / temp)
    	}
    
    	if sign {
    		temp = -temp
    	}
    	return temp
    }
    
    // Acos returns the arccosine, in radians, of x.
    //
    // Special case is:
    //
    //	Acos(x) = NaN if x < -1 or x > 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/math/cmplx/asin.go

    // 2.9e-17.  See also clog().
    
    // Atan returns the inverse tangent of x.
    func Atan(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case im == 0:
    		return complex(math.Atan(re), im)
    	case re == 0 && math.Abs(im) <= 1:
    		return complex(re, math.Atanh(im))
    	case math.IsInf(im, 0) || math.IsInf(re, 0):
    		if math.IsNaN(re) {
    			return complex(math.NaN(), math.Copysign(0, im))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  4. internal/event/target/nats.go

    	}
    	clientID := u.String()
    
    	connOpts := []stan.Option{stan.NatsURL(addressURL)}
    	if n.Streaming.MaxPubAcksInflight > 0 {
    		connOpts = append(connOpts, stan.MaxPubAcksInflight(n.Streaming.MaxPubAcksInflight))
    	}
    	if n.UserCredentials != "" {
    		connOpts = append(connOpts, stan.NatsOptions(nats.UserCredentials(n.UserCredentials)))
    	}
    
    	return stan.Connect(n.Streaming.ClusterID, clientID, connOpts...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/math/atan2.go

    			}
    		}
    		switch {
    		case IsInf(y, 0):
    			return Copysign(3*Pi/4, y)
    		default:
    			return Copysign(Pi, y)
    		}
    	case IsInf(y, 0):
    		return Copysign(Pi/2, y)
    	}
    
    	// Call atan and determine the quadrant.
    	q := Atan(y / x)
    	if x < 0 {
    		if q <= 0 {
    			return q + Pi
    		}
    		return q - Pi
    	}
    	return q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/math/atan_s390x.s

    GLOBL ·atanxmone<> + 0(SB), RODATA, $8
    
    // Atan returns the arctangent, in radians, of the argument.
    //
    // Special cases are:
    //      Atan(±0) = ±0
    //      Atan(±Inf) = ±Pi/2Pi
    // The algorithm used is minimax polynomial approximation
    // with coefficients determined with a Remez exchange algorithm.
    
    TEXT	·atanAsm(SB), NOSPLIT, $0-16
    	FMOVD	x+0(FP), F0
    	//special case Atan(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. src/math/cmplx/cmath_test.go

    		}
    	}
    }
    func TestAtan(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Atan(vc[i]); !cVeryclose(atan[i], f) {
    			t.Errorf("Atan(%g) = %g, want %g", vc[i], f, atan[i])
    		}
    	}
    	for _, v := range atanSC {
    		if f := Atan(v.in); !cAlike(v.want, f) {
    			t.Errorf("Atan(%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)
  8. src/math/export_s390x_test.go

    var TanhNoVec = tanh
    var Log1pNovec = log1p
    var AtanhNovec = atanh
    var AcosNovec = acos
    var AcoshNovec = acosh
    var AsinNovec = asin
    var AsinhNovec = asinh
    var ErfNovec = erf
    var ErfcNovec = erfc
    var AtanNovec = atan
    var Atan2Novec = atan2
    var CbrtNovec = cbrt
    var LogNovec = log
    var TanNovec = tan
    var ExpNovec = exp
    var Expm1Novec = expm1
    var PowNovec = pow
    var HypotNovec = hypot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 732 bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/da/stopwords.txt

    mit
    også
    under
    have
    dig
    anden
    hende
    mine
    alt
    meget
    sit
    sine
    vor
    mod
    disse
    hvis
    din
    nogle
    hos
    blive
    mange
    ad
    bliver
    hendes
    været
    thi
    jer
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 564 bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/sv/stopwords.txt

    eller
    allt
    mycket
    sedan
    ju
    denna
    själv
    detta
    åt
    utan
    varit
    hur
    ingen
    mitt
    ni
    bli
    blev
    oss
    din
    dessa
    några
    deras
    blir
    mina
    samma
    vilken
    er
    sådan
    vår
    blivit
    dess
    inom
    mellan
    sådant
    varför
    varje
    vilka
    ditt
    vem
    vilket
    sitta
    sådana
    vart
    dina
    vars
    vårt
    våra
    ert
    era
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 700 bytes
    - Viewed (0)
Back to top