  | NMathFunctionsLog(FloatComplexMatrix) 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 FloatComplexMatrix Log(
	FloatComplexMatrix A
)
Public Shared Function Log ( 
	A As FloatComplexMatrix
) As FloatComplexMatrix
public:
static FloatComplexMatrix^ Log(
	FloatComplexMatrix^ A
)
static member Log : 
        A : FloatComplexMatrix -> FloatComplexMatrix Parameters
- A  FloatComplexMatrix
 - A matrix.
 
Return Value
FloatComplexMatrixA new matrix.
RemarksB[i,j] = System.Math.Log(A[i,j])
See Also