Mega Code Archive

 
Categories / VB.Net / Development
 

Math Tanh Returns the hyperbolic tangent of the specified angle

Imports System Imports Microsoft.VisualBasic Module DemoTanh     Sub Main()         Dim tanhArg As Double = Math.Tanh(0.5)         Console.WriteLine(tanhArg)     End Sub  End Module