Matrix<T>.LogCore Method

Definition

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

Overload List

LogCore(Matrix<T>) Computes the logarithm of the elements of a matrix.
LogCore(T, Matrix<T>) Computes the logarithm of the elements of a matrix.

LogCore(Matrix<T>)

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

Parameters

result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>

LogCore(T, Matrix<T>)

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

Parameters

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

Return Value

Matrix<T>

See Also