Vector.Exp Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
Returns
A vector whose elements are the exponential of the elements in vector.