Sinh, Sin sinh – Zilog EZ80F916 User Manual
Page 382

UM014423-0607
C Standard Library
ZiLOG Developer Studio II
eZ80Acclaim!
®
User Manual
362
Synopsis
#include
int setjmp(jmp_buf env);
Returns
If the return is from a direct invocation, the
setjmp
function returns the value zero. If the
return is from a call to the
longjmp
function, the
setjmp
function returns a nonzero
value.
Example
int i;
jmp_buf env;
i=setjmp(env);
longjmp(env, i);
sin
Computes the sine of x (measured in radians). A large magnitude argument can yield a
result with little or no significance.
Synopsis
#include
double sin(double x);
Returns
The sine value.
Example
double x=1.24;
double y;
y=sin(x);
sinh
Computes the hyperbolic sine of x. A range error occurs if the magnitude of x is too large.
Synopsis
#include
double sinh(double x);
Returns
The hyperbolic sine value.