Method exp
exp(Single)
Returns the base-e exponential of x.
Declaration
public static float exp(float x)
Parameters
Type | Name | Description |
---|---|---|
Single | x | Input value. |
Returns
Type | Description |
---|---|
Single | The base-e exponential of the input. |
exp(float2)
Returns the componentwise base-e exponential of x.
Declaration
public static float2 exp(float2 x)
Parameters
Type | Name | Description |
---|---|---|
float2 | x | Input value. |
Returns
Type | Description |
---|---|
float2 | The componentwise base-e exponential of the input. |
exp(float3)
Returns the componentwise base-e exponential of x.
Declaration
public static float3 exp(float3 x)
Parameters
Type | Name | Description |
---|---|---|
float3 | x | Input value. |
Returns
Type | Description |
---|---|
float3 | The componentwise base-e exponential of the input. |
exp(float4)
Returns the componentwise base-e exponential of x.
Declaration
public static float4 exp(float4 x)
Parameters
Type | Name | Description |
---|---|---|
float4 | x | Input value. |
Returns
Type | Description |
---|---|
float4 | The componentwise base-e exponential of the input. |
exp(Double)
Returns the base-e exponential of x.
Declaration
public static double exp(double x)
Parameters
Type | Name | Description |
---|---|---|
Double | x | Input value. |
Returns
Type | Description |
---|---|
Double | The base-e exponential of the input. |
exp(double2)
Returns the componentwise base-e exponential of x.
Declaration
public static double2 exp(double2 x)
Parameters
Type | Name | Description |
---|---|---|
double2 | x | Input value. |
Returns
Type | Description |
---|---|
double2 | The componentwise base-e exponential of the input. |
exp(double3)
Returns the componentwise base-e exponential of x.
Declaration
public static double3 exp(double3 x)
Parameters
Type | Name | Description |
---|---|---|
double3 | x | Input value. |
Returns
Type | Description |
---|---|
double3 | The componentwise base-e exponential of the input. |
exp(double4)
Returns the componentwise base-e exponential of x.
Declaration
public static double4 exp(double4 x)
Parameters
Type | Name | Description |
---|---|---|
double4 | x | Input value. |
Returns
Type | Description |
---|---|
double4 | The componentwise base-e exponential of the input. |
exp(quaternion)
Returns the natural exponent of a quaternion.
Declaration
public static quaternion exp(quaternion q)
Parameters
Type | Name | Description |
---|---|---|
quaternion | q | The quaternion. |
Returns
Type | Description |
---|---|
quaternion | The natural exponent of the input quaternion. |