Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ToNearestEven (0.28 sec)

  1. src/math/big/floatexample_test.go

    func ExampleRoundingMode() {
    	operands := []float64{2.6, 2.5, 2.1, -2.1, -2.5, -2.6}
    
    	fmt.Print("   x")
    	for mode := big.ToNearestEven; mode <= big.ToPositiveInf; mode++ {
    		fmt.Printf("  %s", mode)
    	}
    	fmt.Println()
    
    	for _, f64 := range operands {
    		fmt.Printf("%4g", f64)
    		for mode := big.ToNearestEven; mode <= big.ToPositiveInf; mode++ {
    			// sample operands above require 2 bits to represent mantissa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/math/big/float.go

    // precision set to a reasonable value determined by the operands, and
    // their mode is the zero value for RoundingMode (ToNearestEven).
    //
    // By setting the desired precision to 24 or 53 and using matching rounding
    // mode (typically [ToNearestEven]), Float operations produce the same results
    // as the corresponding float32 or float64 IEEE 754 arithmetic for operands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top