Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,232 for exp5 (0.05 sec)

  1. src/math/cmplx/exp.go

    //
    // If
    //     z = x + iy,
    //     r = exp(x),
    // then
    //     w = r cos y + i r sin y.
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      8700       3.7e-17     1.1e-17
    //    IEEE      -10,+10     30000       3.0e-16     8.7e-17
    
    // Exp returns e**x, the base-e exponential of x.
    func Exp(x complex128) complex128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. src/math/rand/v2/exp.go

    		i := uint8(u >> 32)
    		x := float64(j) * float64(we[i])
    		if j < ke[i] {
    			return x
    		}
    		if i == 0 {
    			return re - math.Log(r.Float64())
    		}
    		if fe[i]+float32(r.Float64())*(fe[i-1]-fe[i]) < float32(math.Exp(-x)) {
    			return x
    		}
    	}
    }
    
    var ke = [256]uint32{
    	0xe290a139, 0x0, 0x9beadebc, 0xc377ac71, 0xd4ddb990,
    	0xde893fb8, 0xe4a8e87c, 0xe8dff16a, 0xebf2deab, 0xee49a6e8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:08:47 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/tutorial/mac-tar-cache-exp.png

    mac-tar-cache-exp.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190.9K bytes
    - Viewed (0)
  4. src/math/rand/exp.go

    		i := j & 0xFF
    		x := float64(j) * float64(we[i])
    		if j < ke[i] {
    			return x
    		}
    		if i == 0 {
    			return re - math.Log(r.Float64())
    		}
    		if fe[i]+float32(r.Float64())*(fe[i-1]-fe[i]) < float32(math.Exp(-x)) {
    			return x
    		}
    	}
    }
    
    var ke = [256]uint32{
    	0xe290a139, 0x0, 0x9beadebc, 0xc377ac71, 0xd4ddb990,
    	0xde893fb8, 0xe4a8e87c, 0xe8dff16a, 0xebf2deab, 0xee49a6e8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/call.go

    				x.mode = constant_
    				x.typ = exp.typ
    				x.val = exp.val
    			case *TypeName:
    				x.mode = typexpr
    				x.typ = exp.typ
    			case *Var:
    				x.mode = variable
    				x.typ = exp.typ
    				if pkg.cgo && strings.HasPrefix(exp.name, "_Cvar_") {
    					x.typ = x.typ.(*Pointer).base
    				}
    			case *Func:
    				x.mode = funcMode
    				x.typ = exp.typ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. src/go/types/call.go

    					_, exp = check.scope.LookupParent(prefix+sel, check.pos)
    					if exp != nil {
    						break
    					}
    				}
    				if exp == nil {
    					check.errorf(e.Sel, UndeclaredImportedName, "undefined: %s", ast.Expr(e)) // cast to ast.Expr to silence vet
    					goto Error
    				}
    				check.objDecl(exp, nil)
    			} else {
    				exp = pkg.scope.Lookup(sel)
    				if exp == nil {
    					if !pkg.fake {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

    import org.codehaus.groovy.ast.expr.Expression;
    import org.codehaus.groovy.ast.expr.ListExpression;
    import org.codehaus.groovy.ast.expr.MapEntryExpression;
    import org.codehaus.groovy.ast.expr.MapExpression;
    import org.codehaus.groovy.ast.expr.MethodCallExpression;
    import org.codehaus.groovy.ast.expr.PropertyExpression;
    import org.codehaus.groovy.ast.expr.SpreadMapExpression;
    import org.codehaus.groovy.ast.expr.VariableExpression;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/math/export_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Export internal functions for testing.
    var ExpGo = exp
    var Exp2Go = exp2
    var HypotGo = hypot
    var SqrtGo = sqrt
    var TrigReduce = trigReduce
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 06:33:18 UTC 2018
    - 357 bytes
    - Viewed (0)
  9. src/math/exp_arm64.s

    	RET
    underflow:
    	MOVD	ZR, ret+8(FP)
    	RET
    overflow:
    	MOVD	$PosInf, R0
    	MOVD	R0, ret+8(FP)
    	RET
    
    
    // Exp2 returns 2**x, the base-2 exponential of x.
    // This is an assembly implementation of the method used for function Exp2 in file exp.go.
    //
    // func Exp2(x float64) float64
    TEXT ·archExp2(SB),$0-16
    	FMOVD	x+0(FP), F0	// F0 = x
    	FCMPD	F0, F0
    	BNE	isNaN		// x = NaN, return NaN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ListsTest.java

        List<String> y = list("3", "4");
    
        List<Object> exp1 = list((Object) 1, "3");
        List<Object> exp2 = list((Object) 1, "4");
        List<Object> exp3 = list((Object) 2, "3");
        List<Object> exp4 = list((Object) 2, "4");
    
        assertThat(Lists.<Object>cartesianProduct(x, y))
            .containsExactly(exp1, exp2, exp3, exp4)
            .inOrder();
      }
    
      public void testCartesianProductTooBig() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top