  | NMathFunctionsLog(FloatMatrix) Method | 
            Creates a new matrix with the same dimensions as a given matrix, whose values
            are the result of applying the natural logarithm function to each 
            element of the matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatMatrix Log(
	FloatMatrix A
)
Public Shared Function Log ( 
	A As FloatMatrix
) As FloatMatrix
public:
static FloatMatrix^ Log(
	FloatMatrix^ A
)
static member Log : 
        A : FloatMatrix -> FloatMatrix Parameters
- A  FloatMatrix
 - A matrix.
 
Return Value
FloatMatrixA new matrix.
RemarksB[i,j] = System.Math.Log(A[i,j])
See Also