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

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

The cmath.sinh() method returns the given complex number’s hyperbolic sine.<\/p>\n

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

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

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

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

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

Returns a\u00a0complex value that represents the complex number’s 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) hyperbolic sine value = \r\n(-6.5481200409110025-7.61923172032141j)<\/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) hyperbolic sine value = \r\n(-30.879431343588244+67.47891523845588j)<\/pre>\n

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

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