Vector.Log Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Log<T>(Vector<T>) Returns a vector whose elements are the logarithms of the components of another vector.
Log<T>(Vector<T>, T) Returns a vector whose elements are the logarithms of the components of another vector.

Vector.Log<T>(Vector<T>)

Returns a vector whose elements are the logarithms of the components of another vector.
C#
public static Vector<T> Log<T>(
	this Vector<T> vector
)

Parameters

vector  Vector<T>
A vector.

Type Parameters

T

Return Value

Vector<T>
A vector whose elements are the natural logarithms of the components 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

ArgumentNullExceptionvector is null

Vector.Log<T>(Vector<T>, T)

Returns a vector whose elements are the logarithms of the components of another vector.
C#
public static Vector<T> Log<T>(
	this Vector<T> vector,
	T newBase
)

Parameters

vector  Vector<T>
A vector.
newBase  T
The base of the logarithm.

Type Parameters

T

Return Value

Vector<T>
A vector whose elements are the natural logarithms of the components 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

ArgumentNullExceptionvector is null

See Also