Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(129)

Side by Side Diff: src/pkg/math/asin.go

Issue 4715041: code review 4715041: go/printer: changed max. number of newlines from 3 to 2 (Closed)
Patch Set: diff -r 43f78423340b https://go.googlecode.com/hg/ Created 13 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/math/acosh.go ('k') | src/pkg/math/asinh.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package math 5 package math
6 6
7
8 /* 7 /*
9 Floating-point arcsine and arccosine. 8 Floating-point arcsine and arccosine.
10 9
11 They are implemented by computing the arctangent 10 They are implemented by computing the arctangent
12 after appropriate range reduction. 11 after appropriate range reduction.
13 */ 12 */
14 13
15 // Asin returns the arcsine of x. 14 // Asin returns the arcsine of x.
16 // 15 //
17 // Special cases are: 16 // Special cases are:
(...skipping 23 matching lines...) Expand all
41 temp = -temp 40 temp = -temp
42 } 41 }
43 return temp 42 return temp
44 } 43 }
45 44
46 // Acos returns the arccosine of x. 45 // Acos returns the arccosine of x.
47 // 46 //
48 // Special case is: 47 // Special case is:
49 // Acos(x) = NaN if x < -1 or x > 1 48 // Acos(x) = NaN if x < -1 or x > 1
50 func Acos(x float64) float64 { return Pi/2 - Asin(x) } 49 func Acos(x float64) float64 { return Pi/2 - Asin(x) }
OLDNEW
« no previous file with comments | « src/pkg/math/acosh.go ('k') | src/pkg/math/asinh.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b