func ExampleKepler4() { // Input data from example 30.a, p. 196, // result from p. 207 E := kepler.Kepler4(.1, 5*math.Pi/180) fmt.Printf("%.6f\n", E*180/math.Pi) // Output: // 5.554599 }
func ExampleKepler4() { // Input data from example 30.a, p. 196, // result from p. 207 E := kepler.Kepler4(.1, unit.AngleFromDeg(5)) fmt.Printf("%.6f\n", E.Deg()) // Output: // 5.554599 }