Vector256.Exp Method

Definition

Overloads

Exp(Vector256<Double>)

Computes the exp of each element in a vector.

Exp(Vector256<Single>)

Computes the exp of each element in a vector.

Exp(Vector256<Double>)

Source:
Vector256.cs

Computes the exp of each element in a vector.

public:
 static System::Runtime::Intrinsics::Vector256<double> Exp(System::Runtime::Intrinsics::Vector256<double> vector);
public static System.Runtime.Intrinsics.Vector256<double> Exp (System.Runtime.Intrinsics.Vector256<double> vector);
static member Exp : System.Runtime.Intrinsics.Vector256<double> -> System.Runtime.Intrinsics.Vector256<double>
Public Function Exp (vector As Vector256(Of Double)) As Vector256(Of Double)

Parameters

vector
Vector256<Double>

The vector that will have its Exp computed.

Returns

A vector whose elements are the exp of the elements in vector.

Applies to

Exp(Vector256<Single>)

Source:
Vector256.cs

Computes the exp of each element in a vector.

public:
 static System::Runtime::Intrinsics::Vector256<float> Exp(System::Runtime::Intrinsics::Vector256<float> vector);
public static System.Runtime.Intrinsics.Vector256<float> Exp (System.Runtime.Intrinsics.Vector256<float> vector);
static member Exp : System.Runtime.Intrinsics.Vector256<single> -> System.Runtime.Intrinsics.Vector256<single>
Public Function Exp (vector As Vector256(Of Single)) As Vector256(Of Single)

Parameters

vector
Vector256<Single>

The vector that will have its exp computed.

Returns

A vector whose elements are the exp of the elements in vector.

Applies to