Returns a matrix whose elements are the logarithms of the elements of another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> Log<T>(
Matrix<T> matrix,
T newBase
)
Public Shared Function Log(Of T) (
matrix As Matrix(Of T),
newBase As T
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ Log(
Matrix<T>^ matrix,
T newBase
)
static member Log :
matrix : Matrix<'T> *
newBase : 'T -> Matrix<'T>
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
A matrix. - newBase
- Type: T
The base of the logarithm.
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are the natural logarithms of the elements of
matrix.
Reference