1
0
mirror of https://github.com/golang/go synced 2024-10-05 18:31:28 -06:00
go/src/lib/math/asin.go
Robert Griesemer 2f4352a26d - switched most of existing Go code to new export syntax
- adjusted lang doc

R=r
DELTA=192  (26 added, 65 deleted, 101 changed)
OCL=13844
CL=13848
2008-08-04 17:17:59 -07:00

58 lines
848 B
Go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package math
import math "math"
/*
* asin(arg) and acos(arg) return the arcsin, arccos,
* respectively of their arguments.
*
* Arctan is called after appropriate range reduction.
*/
const
(
pio2 = .15707963267948966192313216e1
)
export func
asin(arg float64)float64
{
var temp, x float64;
var sign bool;
sign = false;
x = arg;
if x < 0 {
x = -x;
sign = true;
}
if arg > 1 {
return sys.NaN();
}
temp = sqrt(1 - x*x);
if x > 0.7 {
temp = pio2 - atan(temp/x);
} else {
temp = atan(x/temp);
}
if sign {
temp = -temp;
}
return temp;
}
export func
acos(arg float64)float64
{
if(arg > 1 || arg < -1) {
return sys.NaN();
}
return pio2 - asin(arg);
}