Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


exp2

Returns the base-2 exponential of x.
Read time 1 minuteLast updated 10 days ago

Definition

exp2(float)

Returns the base-2 exponential of x.
public static float exp2(float x)

Parameters

Input value.

Returns

Type

Description

floatThe base-2 exponential of the input.

exp2(float2)

Returns the componentwise base-2 exponential of x.
public static float2 exp2(float2 x)

Parameters

Input value.

Returns

Type

Description

float2The componentwise base-2 exponential of the input.

exp2(float3)

Returns the componentwise base-2 exponential of x.
public static float3 exp2(float3 x)

Parameters

Input value.

Returns

Type

Description

float3The componentwise base-2 exponential of the input.

exp2(float4)

Returns the componentwise base-2 exponential of x.
public static float4 exp2(float4 x)

Parameters

Input value.

Returns

Type

Description

float4The componentwise base-2 exponential of the input.

exp2(double)

Returns the base-2 exponential of x.
public static double exp2(double x)

Parameters

Input value.

Returns

Type

Description

doubleThe base-2 exponential of the input.

exp2(double2)

Returns the componentwise base-2 exponential of x.
public static double2 exp2(double2 x)

Parameters

Input value.

Returns

Type

Description

double2The componentwise base-2 exponential of the input.

exp2(double3)

Returns the componentwise base-2 exponential of x.
public static double3 exp2(double3 x)

Parameters

Input value.

Returns

Type

Description

double3The componentwise base-2 exponential of the input.

exp2(double4)

Returns the componentwise base-2 exponential of x.
public static double4 exp2(double4 x)

Parameters

Input value.

Returns

Type

Description

double4The componentwise base-2 exponential of the input.