Edit

Share via


Vector.Exp Method

Definition

Overloads

Name Description
Exp(Vector<Double>)

Computes the exponential of each element in a vector.

Exp(Vector<Single>)

Computes the exponential of each element in a vector.

Exp(Vector<Double>)

Source:
Vector.cs

Computes the exponential of each element in a vector.

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

Parameters

vector
Vector<Double>

The vector that will have its exponential computed.

Returns

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

Applies to

Exp(Vector<Single>)

Source:
Vector.cs

Computes the exponential of each element in a vector.

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

Parameters

vector
Vector<Single>

The vector that will have its exponential computed.

Returns

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

Applies to