Technical Support
On-Line Manuals
C166 User's Guide
#include <math.h> double sinh ( double x); /* value to calc hyperbolic sine for */
The sinh function calculates the hyperbolic sine of the floating-point value x.
The sinh function returns the hyperbolic sine of x.
cosh, tanh
#include <math.h> #include <stdio.h> /* for printf */ void tst_sinh (void) { float x; float y; for (x = 0; x < (2 * 3.1415); x += 0.1) { y = sinh (x); printf ("SINH(%f) = %f\n", x, y); } }