Breyta

Deila með


Vector.Log2 Method

Definition

Overloads

Name Description
Log2(Vector<Double>)

Computes the log2 of each element in a vector.

Log2(Vector<Single>)

Computes the log2 of each element in a vector.

Log2(Vector<Double>)

Source:
Vector.cs

Computes the log2 of each element in a vector.

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

Parameters

vector
Vector<Double>

The vector that will have its log2 computed.

Returns

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

Applies to

Log2(Vector<Single>)

Source:
Vector.cs

Computes the log2 of each element in a vector.

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

Parameters

vector
Vector<Single>

The vector that will have its log2 computed.

Returns

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

Applies to