- Sort Score
- Result 10 results
- Languages All
Results 21 - 28 of 28 for Sqrt (0.04 sec)
-
guava/src/com/google/common/collect/Multimaps.java
* {@snippet : * ListMultimap<String, Integer> multimap = * ImmutableListMultimap.of("a", 4, "a", 16, "b", 9); * Function<Integer, Double> sqrt = (Integer in) -> Math.sqrt((int) in); * ListMultimap<String, Double> transformed = Multimaps.transformValues(map, * sqrt); * System.out.println(transformed); * } * * ... prints {@code {a=[2.0, 4.0], b=[3.0]}}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 86.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
XVMODW X3, X2, X1 // 410ce374 XVMODV X3, X2, X1 // 418ce374 XVMODBU X3, X2, X1 // 410ce674 XVMODHU X3, X2, X1 // 418ce674 XVMODWU X3, X2, X1 // 410ce774 XVMODVU X3, X2, X1 // 418ce774 // [X]VF{SQRT/RECIP/RSQRT}{F/D} instructions VFSQRTF V1, V2 // 22e49c72 VFSQRTD V1, V2 // 22e89c72 VFRECIPF V1, V2 // 22f49c72 VFRECIPD V1, V2 // 22f89c72 VFRSQRTF V1, V2 // 22049d72 VFRSQRTD V1, V2 // 22089d72
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0) -
src/cmd/cgo/doc.go
assignment context to retrieve both the return value (if any) and the C errno variable as an error (use _ to skip the result value if the function returns void). For example: n, err = C.sqrt(-1) _, err := C.voidFunc() var n, err = C.sqrt(1) Note that the C errno value may be non-zero, and thus the err result may be non-nil, even if the function call is successful. Unlike normal Go conventions,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Dec 11 23:57:34 UTC 2024 - 44K bytes - Viewed (0) -
api/go1.10.txt
pkg math, func Erfcinv(float64) float64 pkg math, func Erfinv(float64) float64 pkg math, func Round(float64) float64 pkg math, func RoundToEven(float64) float64 pkg math/big, const MaxBase = 62 pkg math/big, method (*Float) Sqrt(*Float) *Float pkg math/big, method (*Int) CmpAbs(*Int) int pkg math/rand, func Shuffle(int, func(int, int)) pkg math/rand, method (*Rand) Shuffle(int, func(int, int))
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
RELEASE.md
1e-10))` Alternatively, you can override `convolution_op`: `python class StandardizedConv2D(tf.keras.Layer): def convolution_op(self, inputs, kernel): mean, var = tf.nn.moments(kernel, axes=[0, 1, 2], keepdims=True) # Author code uses std + 1e-5 return super().convolution_op(inputs, (kernel - mean) / tf.sqrt(var + 1e-10))`
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (1) -
doc/go_spec.html
the non-blank method and field names must be distinct. </p> <p> Given defined type <code>Point</code> the declarations </p> <pre> func (p *Point) Length() float64 { return math.Sqrt(p.x * p.x + p.y * p.y) } func (p *Point) Scale(factor float64) { p.x *= factor p.y *= factor } </pre> <p> bind the methods <code>Length</code> and <code>Scale</code>,
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
tables[tableIndex].Select(t, windowValue) p.Add(p, t) tableIndex-- windowValue = byte & 0b1111 tables[tableIndex].Select(t, windowValue) p.Add(p, t) tableIndex-- } return p, nil } // {{.p}}Sqrt sets e to a square root of x. If x is not a square, {{.p}}Sqrt returns // false and e is unchanged. e and x can overlap. func {{.p}}Sqrt(e, x *{{ .Element }}) (isSquare bool) { candidate := new({{ .Element }}) {{.p}}SqrtCandidate(candidate, x) square := new({{ .Element }}).Square(candidate) if square.Equal(x) != 1 {...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
api/go1.txt
pkg math, func Signbit(float64) bool pkg math, func Sin(float64) float64 pkg math, func Sincos(float64) (float64, float64) pkg math, func Sinh(float64) float64 pkg math, func Sqrt(float64) float64 pkg math, func Tan(float64) float64 pkg math, func Tanh(float64) float64 pkg math, func Trunc(float64) float64 pkg math, func Y0(float64) float64 pkg math, func Y1(float64) float64
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)