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