Difference between revisions of "Tanh"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == The tanh(d) function will find the hyperbolic tangent of the value or variable ''d'' passed to it. * '''Pass:''' A double to find the hyperbolic tangent of * ''…')
 
m (4 revisions imported)
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
The tanh(d) function will find the hyperbolic tangent of the value or variable ''d'' passed to it.
 
The tanh(d) function will find the hyperbolic tangent of the value or variable ''d'' passed to it.
  
* '''Pass:''' A double to find the hyperbolic tangent of
+
* '''Pass:''' A [[Double]] to find the hyperbolic tangent of
  
* '''Returns:''' A double representing the hyperbolic tangent
+
* '''Returns:''' A [[Double]] representing the hyperbolic tangent
  
 
== Example ==
 
== Example ==
  
  var d:=tanh(10.4);
+
  #include <maths>
var y:=tanh(d);
+
 +
function void main() {
 +
    var d:=tanh(10.4);
 +
    var y:=tanh(d);
 +
};
 +
 
 +
''Since: Version 1.0''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:Maths Functions]]
 
[[Category:Maths Functions]]

Latest revision as of 15:44, 15 April 2019

Overview

The tanh(d) function will find the hyperbolic tangent of the value or variable d passed to it.

  • Pass: A Double to find the hyperbolic tangent of
  • Returns: A Double representing the hyperbolic tangent

Example

#include <maths>

function void main() {
   var d:=tanh(10.4);
   var y:=tanh(d);
};

Since: Version 1.0