tanh
Returns the hyperbolic tangent of a float value.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
tanh(float)
Returns the hyperbolic tangent of a float value.
public static float tanh(float x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float | The hyperbolic tangent of the input. |
tanh(float2)
Returns the componentwise hyperbolic tangent of a float2 vector.
public static float2 tanh(float2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float2 | The componentwise hyperbolic tangent of the input. |
tanh(float3)
Returns the componentwise hyperbolic tangent of a float3 vector.
public static float3 tanh(float3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float3 | The componentwise hyperbolic tangent of the input. |
tanh(float4)
Returns the componentwise hyperbolic tangent of a float4 vector.
public static float4 tanh(float4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float4 | The componentwise hyperbolic tangent of the input. |
tanh(double)
Returns the hyperbolic tangent of a double value.
public static double tanh(double x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double | The hyperbolic tangent of the input. |
tanh(double2)
Returns the componentwise hyperbolic tangent of a double2 vector.
public static double2 tanh(double2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double2 | The componentwise hyperbolic tangent of the input. |
tanh(double3)
Returns the componentwise hyperbolic tangent of a double3 vector.
public static double3 tanh(double3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double3 | The componentwise hyperbolic tangent of the input. |
tanh(double4)
Returns the componentwise hyperbolic tangent of a double4 vector.
public static double4 tanh(double4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double4 | The componentwise hyperbolic tangent of the input. |