Vector<T>.LogCore Method

Definition

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

Overload List

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

LogCore(Vector<T>)

Computes the logarithm of the elements of a vector.
C#
protected virtual Vector<T> LogCore(
	Vector<T>? result
)

Parameters

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

Return Value

Vector<T>

LogCore(T, Vector<T>)

Computes the logarithm of the elements of a vector.
C#
protected virtual Vector<T> LogCore(
	T newBase,
	Vector<T>? result
)

Parameters

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

Return Value

Vector<T>

See Also