Vector.LogInto Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

LogInto<T>(Vector<T>, Vector<T>) Computes the logarithm of the elements of a vector.
LogInto<T>(Vector<T>, T, Vector<T>) Computes the logarithm of the elements of a vector.

LogInto<T>(Vector<T>, Vector<T>)

Computes the logarithm of the elements of a vector.
C#
public static Vector<T> LogInto<T>(
	this Vector<T> vector,
	Vector<T>? result
)

Parameters

vector  Vector<T>
A vector.
result  Vector<T>
The vector that is to hold the result. May be null.

Type Parameters

T

Return Value

Vector<T>
A vector whose elements are equal to the logarithm of the corresponding element of vector.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException

vector is null.

LogInto<T>(Vector<T>, T, Vector<T>)

Computes the logarithm of the elements of a vector.
C#
public static Vector<T> LogInto<T>(
	this Vector<T> vector,
	T newBase,
	Vector<T>? result
)

Parameters

vector  Vector<T>
A vector.
newBase  T
The base of the logarithm.
result  Vector<T>
The vector that is to hold the result. May be null.

Type Parameters

T

Return Value

Vector<T>
A vector whose elements are equal to the logarithm of the corresponding element of vector.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullException

vector is null.

See Also