sinh Function [AX 2012]

Updated: December 10, 2009

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

Retrieves the hyperbolic sine of a real number.


real sinh(real _arg)

Parameter

Description

_arg

The number for which to calculate the hyperbolic sine.

The hyperbolic sine of the specified real number.

Values for the _arg parameter outside the range of –250 to 250 result in a Argument for trigonometric function out of range run-time error.

The following example illustrates the sinh function.

static void sinhExample(Args _arg)
{
    real angleDegrees = 45.0;
    real angleRadians;
    real pi = 3.14;
    real r;
    ;
    angleRadians = pi * angleDegrees / 180;
    r = sinh(angleRadians);
    print "sinh of a " 
        + num2Str(angleDegrees, 2, 2, 1, 1) 
        + " degree angle is " 
        + num2Str(r, 2, 15, 1, 1);
    pause;
}

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).

Community Additions

ADD
Show: