Hyperbolic cotangent
Y = coth(X)
example
Y = coth(X) returns the hyperbolic tangent of the elements of X. The coth function operates element-wise on arrays. The function accepts both real and complex inputs. All angles are in radians.
X
coth
collapse all
Create a vector and calculate the hyperbolic cotangent of each value.
X = [0 pi 2*pi 3*pi]; Y = coth(X)
Y = 1×4 Inf 1.0037 1.0000 1.0000
Plot the hyperbolic cotangent over the domain -π<x<0 and 0<x<π.
x1 = -pi+0.01:0.01:-0.01; x2 = 0.01:0.01:pi-0.01; y1 = coth(x1); y2 = coth(x2); plot(x1,y1,x2,y2) grid on
Input angles in radians, specified as a scalar, vector, matrix, or multidimensional array.
Data Types: single | double Complex Number Support: Yes
single
double
The hyperbolic cotangent of x is equal to the inverse of the hyperbolic tangent
coth(x)=1tanh(x)=e2x+1e2x−1.
In terms of the traditional cotangent function with a complex argument, the identity is
coth(x)=icot(ix) .
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports GPU arrays. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
acoth | cosh | cot | sinh | tanh
acoth
cosh
cot
sinh
tanh
You have a modified version of this example. Do you want to open this example with your edits?