Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for fracu (0.12 sec)

  1. src/math/big/natconv_test.go

    		}
    		if err != nil {
    			t.Errorf("scan%+v\n\tgot error = %s", a, err)
    		}
    	}
    }
    
    var natScanTests = []struct {
    	s     string // string to be scanned
    	base  int    // input base
    	frac  bool   // fraction ok
    	x     nat    // expected nat
    	b     int    // expected base
    	count int    // expected digit count
    	err   error  // expected error
    	next  rune   // next character (or 0, if at EOF)
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // abs(sin(pi * frac(x))), where frac(x) is the fractional part of x.  This
        // is more numerically accurate: It doesn't overflow to inf like pi * x can,
        // and if x is an integer, it evaluates to 0 exactly, which is significant
        // because we then take the log of this value, and log(0) is inf.
        //
        // We don't have a frac(x) primitive in XLA and computing it is tricky, but
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    		{"0.5", 11, "1024"},
    		{"-0.5", -2, "-0.125"},
    		{"32", 5, "1024"},
    		{"1024", -10, "1"},
    	} {
    		frac := makeFloat(test.frac)
    		want := makeFloat(test.z)
    		var z Float
    		z.SetMantExp(frac, test.exp)
    		if !alike(&z, want) {
    			t.Errorf("SetMantExp(%s, %d) = %s; want %s", test.frac, test.exp, z.Text('g', 10), test.z)
    		}
    		// test inverse property
    		mant := new(Float)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/Quantiles.java

     * (unless there are {@link Double#NaN NaN} values, see below); otherwise, the result is the average
     * of the values which would appear at the indexes floor(x) and ceil(x) weighted by (1-frac(x)) and
     * frac(x) respectively. This is the same definition as used by Excel and by S, it is the Type 7
     * definition in <a
     * href="http://stat.ethz.ch/R-manual/R-devel/library/stats/html/quantile.html">R</a>, and it is
     * described by <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/Quantiles.java

     * (unless there are {@link Double#NaN NaN} values, see below); otherwise, the result is the average
     * of the values which would appear at the indexes floor(x) and ceil(x) weighted by (1-frac(x)) and
     * frac(x) respectively. This is the same definition as used by Excel and by S, it is the Type 7
     * definition in <a
     * href="http://stat.ethz.ch/R-manual/R-devel/library/stats/html/quantile.html">R</a>, and it is
     * described by <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Compute the regularized incomplete beta integral \\(I_x(a, b)\\).
      }];
    
      let description = [{
    The regularized incomplete beta integral is defined as:
    
    
    \\(I_x(a, b) = \frac{B(x; a, b)}{B(a, b)}\\)
    
    where
    
    
    \\(B(x; a, b) = \int_0^x t^{a-1} (1 - t)^{b-1} dt\\)
    
    
    is the incomplete beta function and \\(B(a, b)\\) is the *complete*
    beta function.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top