exp
Returns the base-e exponential of x.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
exp(float)
Returns the base-e exponential of x.
public static float exp(float x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float | The base-e exponential of the input. |
exp(float2)
Returns the componentwise base-e exponential of x.
public static float2 exp(float2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float2 | The componentwise base-e exponential of the input. |
exp(float3)
Returns the componentwise base-e exponential of x.
public static float3 exp(float3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float3 | The componentwise base-e exponential of the input. |
exp(float4)
Returns the componentwise base-e exponential of x.
public static float4 exp(float4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float4 | The componentwise base-e exponential of the input. |
exp(double)
Returns the base-e exponential of x.
public static double exp(double x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double | The base-e exponential of the input. |
exp(double2)
Returns the componentwise base-e exponential of x.
public static double2 exp(double2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double2 | The componentwise base-e exponential of the input. |
exp(double3)
Returns the componentwise base-e exponential of x.
public static double3 exp(double3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double3 | The componentwise base-e exponential of the input. |
exp(double4)
Returns the componentwise base-e exponential of x.
public static double4 exp(double4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double4 | The componentwise base-e exponential of the input. |
exp(quaternion)
Returns the natural exponent of a quaternion.
public static quaternion exp(quaternion q)
Parameters
The quaternion.
Returns
Type | Description |
|---|---|
| quaternion | The natural exponent of the input quaternion. |