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