Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Example_eConvergents (0.22 sec)

  1. src/math/big/example_rat_test.go

    	return term.Add(term, frac)
    }
    
    // This example demonstrates how to use big.Rat to compute the
    // first 15 terms in the sequence of rational convergents for
    // the constant e (base of natural logarithm).
    func Example_eConvergents() {
    	for i := 1; i <= 15; i++ {
    		r := recur(0, int64(i))
    
    		// Print r both as a fraction and as a floating-point number.
    		// Since big.Rat implements fmt.Formatter, we can use %-13s to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top