|
|
|
Click here to copy the following block |
Function ASin(value As Double) As Double If Abs(value) <> 1 Then ASin = Atn(value / Sqr(1 - value * value)) Else ASin = 1.5707963267949 * Sgn(value) End If End Function
Function ACos(ByVal number As Double) As Double If Abs(number) <> 1 Then ACos = 1.5707963267949 - Atn(number / Sqr(1 - number * number)) ElseIf number = -1 Then ACos = 3.14159265358979 End If End Function
Function ACot(value As Double) As Double ACot = Atn(1 / value) End Function
Function ASec(value As Double) As Double If Abs(value) <> 1 Then ASec = 1.5707963267949 - Atn((1 / value) / Sqr(1 - 1 / (value * value))) Else ASec = 3.14159265358979 * Sgn(value) End If End Function
Function ACsc(value As Double) As Double If Abs(value) <> 1 Then ACsc = Atn((1 / value) / Sqr(1 - 1 / (value * value))) Else ACsc = 1.5707963267949 * Sgn(value) End If End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|