{"id":25400,"date":"2021-11-10T09:39:06","date_gmt":"2021-11-10T04:09:06","guid":{"rendered":"https:\/\/python-programs.com\/?p=25400"},"modified":"2021-11-10T09:39:06","modified_gmt":"2021-11-10T04:09:06","slug":"python-cmath-asinh-method-with-examples","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-cmath-asinh-method-with-examples\/","title":{"rendered":"Python cmath.asinh() Method with Examples"},"content":{"rendered":"

cmath.asinh() Method in Python:<\/strong><\/p>\n

The cmath.asinh() method returns a number’s inverse hyperbolic sine.<\/p>\n

There are primarily two types of branch cuts:<\/p>\n

    \n
  1. Extend from 1j along the imaginary axis to \u221e j to the right.<\/li>\n
  2. Extending from -1j to -\u221e j to the left along the imaginary axis<\/li>\n<\/ol>\n

    Syntax:<\/strong><\/p>\n

    cmath.asinh(x)<\/pre>\n

    Parameters<\/strong><\/p>\n

    x:<\/strong> This is Required. The number used to calculate the inverse hyperbolic sine of<\/p>\n

    Return Value:<\/strong><\/p>\n

    Returns a complex value that represents the complex number’s inverse hyperbolic sine.<\/p>\n

    Examples:<\/strong><\/p>\n

    Example1:<\/strong><\/p>\n

    Input:<\/strong><\/p>\n

    Given Complex Number = 3+4j<\/pre>\n

    Output:<\/strong><\/p>\n

    The given complex number's (3+4j) inverse hyperbolic sine value = \r\n(2.2999140408792695+0.9176168533514787j)<\/pre>\n

    Example2:<\/strong><\/p>\n

    Input:<\/strong><\/p>\n

    Given realpart = 5\r\nGiven imaginary part = 2<\/pre>\n

    Output:<\/strong><\/p>\n

    The given complex number's (5+2j) inverse hyperbolic sine value = \r\n(2.3830308809003258+0.374670804825527j)<\/pre>\n

    Note:<\/strong> The above input format is for dynamic input.<\/p>\n

    cmath.asinh() Method with Examples in Python<\/h2>\n