Edit

Share via


Vector.Log Method

Definition

Overloads

Name Description
Log(Vector<Double>)

Computes the log of each element in a vector.

Log(Vector<Single>)

Computes the log of each element in a vector.

Log(Vector<Double>)

Source:
Vector.cs

Computes the log of each element in a vector.

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

Parameters

vector
Vector<Double>

The vector that will have its log computed.

Returns

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

Applies to

Log(Vector<Single>)

Source:
Vector.cs

Computes the log of each element in a vector.

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

Parameters

vector
Vector<Single>

The vector that will have its log computed.

Returns

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

Applies to