Skip to main content

Inverse Trigonometric functions

Syntax


#define include_inverse_trig
#include <AB_Math.bas>\

asin ( x)

acos ( x )

atan ( x )

atan2(y , x, hypot)             '  hypot is called by reference and updated by the call

sec ( x)

csc (x)

ctan (x)

asec(x)

acsc(x)

acot(x)

Description


Part of a user contributed library that computes the standard trigonometric functions.

Example


#define include_inverse_trig
#include
<AB_Math.bas>

for i= 0 to 10

print i,sec(i/10)
next i

\

See also

\