Vector<T>.LogInPlace Method

Definition

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

Overload List

LogInPlace() Computes the logarithm of the elements of a vector in-place.
LogInPlace(T) Computes the logarithm of the elements of a vector in-place.

Vector<T>.LogInPlace

Computes the logarithm of the elements of a vector in-place.
C#
public Vector<T> LogInPlace()

Return Value

Vector<T>
The current vector whose elements are replaced by their logarithm.

Vector<T>.LogInPlace(T)

Computes the logarithm of the elements of a vector in-place.
C#
public Vector<T> LogInPlace(
	T newBase
)

Parameters

newBase  T
The base of the logarithm.

Return Value

Vector<T>
The current vector whose elements are replaced by their logarithm.

See Also