The USEncrypt® Math Library#
USEncrypt® includes a math library containing various derived mathematical functions, including geometric functions, exponentials, and logarithmic functions that work over exponential values.
The following is a comprehensive list of these functions:
Computes the arcosine of \(x\) using the Newton-Raphson method. |
|
Computes the arcsine of \(x\) using the Newton-Raphson method. |
|
Computes the arctangent of \(x\) using the Newton-Raphson method. |
|
Computes the hyperbolic arctangent of \(x\) using the Newton-Raphson method. |
|
Returns the conjugate of \(x\). |
|
Computes the cosine of \(x\) using \(n\) iterations of the Taylor series approximation method. |
|
Computes the exponential of \(x\) using \(n\) iterations of the Taylor series approximation method. |
|
Computes the natural logarithm of \(x\) using the Newton-Raphson method. |
|
Computes the sine of \(x\) using the cosine series approximation method. |
|
Computes the non-negative square-root of \(x\). |
|
Computes the tangent of \(x\) using the definition \(\tan{x} = \frac{\sin{x}}{\cos{x}}\). |
|
Computes the hyperbolic tangent of \(x\) using the definition \(\tanh(x) = \frac{e^x - e^{-x}}{e^x + e^{-x}}\). |