Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Sigma (0.05 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    	return o
    }
    
    func compact(o options) options {
    	o.simple = true
    	return o
    }
    
    // HandleFinalSigma specifies whether the special handling of Greek final sigma
    // should be enabled. Unicode prescribes handling the Greek final sigma for all
    // locales, but standards like IDNA and PRECIS override this default.
    func HandleFinalSigma(enable bool) Option {
    	if enable {
    		return handleFinalSigma
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    		if !c.next() {
    			break
    		}
    		if wasMid && c.info.isMid() {
    			c.isMidWord = false
    		}
    	}
    	return c.retSpan()
    }
    
    // finalSigma adds Greek final Sigma handing to another casing function. It
    // determines whether a lowercased sigma should be σ or ς, by looking ahead for
    // case-ignorables and a cased letters.
    func finalSigma(f mapFunc) mapFunc {
    	return func(c *context) bool {
    		if !c.hasPrefix("Σ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    // What we want to calculate is: R = matmul(P-z, Q-w).
    // Then r_ij = sigma(k) (p_ik - z) * (q_kj - w)
    //           = sigma(k)(p_ik * q_kj) - w * sigma(k)p_ik - z * sigma(k)q_kj
    //             + sigma(k)z*w.
    // zp_input_contribution = z * sigma(k)q_kj
    // zp_weight_contribution = w * sigma(k)p_ik
    // In case z != 0 and w != 0, we need to additionally calculate sigma(k)z*w,
    // which is: # of reduced dim(n in this case) * input_zp * weight_zp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/mdo/reader-stax.vm

            entities.put("Nu", "\u039d");
            entities.put("Xi", "\u039e");
            entities.put("Omicron", "\u039f");
            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. src/runtime/chan_test.go

    		default:
    			t.Fatalf("unexpected value %d on channel", b)
    		}
    	}
    	// If the select in the goroutine is fair,
    	// cnt1 and cnt2 should be about the same value.
    	// See if we're more than 10 sigma away from the expected value.
    	// 10 sigma is a lot, but we're ok with some systematic bias as
    	// long as it isn't too severe.
    	const mean = trials * 0.5
    	const variance = trials * 0.5 * (1 - 0.5)
    	stddev := math.Sqrt(variance)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. src/mdo/reader.vm

            entities.put("Nu", "\u039d");
            entities.put("Xi", "\u039e");
            entities.put("Omicron", "\u039f");
            entities.put("Pi", "\u03a0");
            entities.put("Rho", "\u03a1");
            entities.put("Sigma", "\u03a3");
            entities.put("Tau", "\u03a4");
            entities.put("Upsilon", "\u03a5");
            entities.put("Phi", "\u03a6");
            entities.put("Chi", "\u03a7");
            entities.put("Psi", "\u03a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"↓":                  "\u2193",
    	"←":                  "\u2190",
    	"→":                 "\u2192",
    	"↑":                    "\u2191",
    	"Σ":                           "\u03a3",
    	"∘":                     "\u2218",
    	"𝕊":                            "\U0001d54a",
    	"√":                            "\u221a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    037A          ; disallowed_STD3_mapped ; 0020 03B9     # 1.1  GREEK YPOGEGRAMMENI
    037B..037D    ; valid                                  # 5.0  GREEK SMALL REVERSED LUNATE SIGMA SYMBOL..GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL
    037E          ; disallowed_STD3_mapped ; 003B          # 1.1  GREEK QUESTION MARK
    037F          ; mapped                 ; 03F3          # 7.0  GREEK CAPITAL LETTER YOT
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    	"Kappa":    "\u039A",
    	"Lambda":   "\u039B",
    	"Mu":       "\u039C",
    	"Nu":       "\u039D",
    	"Xi":       "\u039E",
    	"Omicron":  "\u039F",
    	"Pi":       "\u03A0",
    	"Rho":      "\u03A1",
    	"Sigma":    "\u03A3",
    	"Tau":      "\u03A4",
    	"Upsilon":  "\u03A5",
    	"Phi":      "\u03A6",
    	"Chi":      "\u03A7",
    	"Psi":      "\u03A8",
    	"Omega":    "\u03A9",
    	"alpha":    "\u03B1",
    	"beta":     "\u03B2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // Analysis series B. Vol. 1:
    // lgamma(z + 1) = (log(2) + log(pi)) / 2 + (z + 1/2) * log(t(z)) - t(z) + A(z)
    // t(z) = z + kLanczosGamma + 1/2
    // A(z) = kBaseLanczosCoeff
    //       + sigma(k = 1, n, kLanczosCoefficients[i] / (z +  k))
    //
    // Coefficients for the Lanczos approximation of the gamma function. The
    // coefficients are uniquely determined by the choice of g and n
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top