Mikroelektronika MIKROE-742 데이터 시트

다운로드
페이지 532
sin
sinh
sqrt
tan
tanh
495
MIKROELEKTRONIKA
- SOFTWARE AND HARDWARE SOLUTIONS FOR EMBEDDED WORLD
Libraries
mikroPASCAL PRO for AVR
CHAPTER 6
Prototype
function sin(arg : real) : real;
Description The function returns the sine of 
arg
in radians. The return value is from -1 to 1.
Prototype
function sinh(x : real) : real;
Description
The function returns the hyperbolic sine of x, defined mathematically as (ex-e-
x)/2. If the value of x is too large (if overflow occurs), the function fails.
Prototype
function sqrt(x : real) : real;
Description The function returns the non negative square root of x.
Prototype
function tan(x : real) : real;
Description
The function returns the tangent of 
x
in radians. The return value spans the
allowed range of floating point in mikroPascal PRO for AVR.
Prototype
function tanh(x : real) : real;
Description
The function returns the hyperbolic tangent of x, defined mathematically as
sinh(x)/cosh(x).