Matrix.Log10Into<T> Method

Computes the base 10 logarithm of the elements of a matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<T> Log10Into<T>(
	Matrix<T> matrix,
	Matrix<T> result
)

Parameters

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

Type Parameters

T

Return Value

Matrix<T>
A matrix whose elements are equal to the logarithm of the corresponding element of matrix.

Exceptions

ArgumentNullExceptionmatrix is null

See Also