-
Notifications
You must be signed in to change notification settings - Fork 2
/
tanh.c
54 lines (42 loc) · 1.34 KB
/
tanh.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2024, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
tan.c
Abstract:
Implementation of the Standard C function.
Calculates the tangens hyperbolicus of a floating-point value.
Author:
Kilian Kegel
--*/
#include <math.h>
/**
Synopsis
#include <math.h>
double tanh(double x);
Description
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/tan-tanf-tanl
https://en.wikipedia.org/wiki/Hyperbolic_functions
Parameters
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/tan-tanf-tanl#parameters
Returns
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/tan-tanf-tanl#return-value
2x
sinh(x) e - 1
tanh(x) = ------------ = ------------
cosh(x) 2x
e + 1
**/
double __cdecl tanh(double d)
{
//CDEDOUBLE* pdbl = (void*)&d;
//uint64_t di = 0x7FF8042000000000LL;
//double* pd = (void*)&di;
double epow2x = exp(2.0 * d);
double epow2xm1 = epow2x - 1.0;
double epow2xp1 = epow2x + 1.0;
double dRet = epow2xm1 / epow2xp1;
return dRet;
}