func ExampleApparentEccentricity() { // Example 57.b, p. 400 fmt.Printf("%.3f\n", binary.ApparentEccentricity(.2763, unit.AngleFromDeg(59.025), unit.AngleFromDeg(219.907))) // Output: // 0.860 }
func ExampleApparentEccentricity() { // Example 57.b, p. 400 fmt.Printf("%.3f\n", binary.ApparentEccentricity(.2763, 59.025*math.Pi/180, 219.907*math.Pi/180)) // Output: // 0.860 }