{"id":25422,"date":"2021-11-12T14:59:41","date_gmt":"2021-11-12T09:29:41","guid":{"rendered":"https:\/\/python-programs.com\/?p=25422"},"modified":"2021-11-14T15:02:16","modified_gmt":"2021-11-14T09:32:16","slug":"python-cmath-tanh-method-with-examples","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-cmath-tanh-method-with-examples\/","title":{"rendered":"Python cmath.tanh() Method with Examples"},"content":{"rendered":"

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

The cmath.tanh() method returns the complex number’s hyperbolic tangent.<\/p>\n

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

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

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

x:<\/strong> This is Required. It is a number that will be used to calculate the hyperbolic tangent.<\/p>\n

If the value is not a number, a TypeError is returned.<\/p>\n

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

Returns a complex value that represents a complex number’s hyperbolic tangent.<\/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 tangent value = \r\n(1.000709536067233+0.00490825806749606j)<\/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 tangent value = \r\n(1.0000593501490003-6.872163880119276e-05j)<\/pre>\n

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

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