Technical Support
On-Line Manuals
Cx51 User's Guide
#include <math.h> float sinh ( float 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); } }
Cookie Settings | Terms of Use | Privacy | Accessibility | Trademarks | Contact Us | Feedback
Copyright © 2005-2019 Arm Limited (or its affiliates). All rights reserved.
This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.
Change Settings
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.