Difference between revisions of "Exp"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This exp(x) function will return the exponent of ''x'' (e to the power of ''x''). * '''Pass:''' A Double * '''Returns:''' A Double representing the expon…')
 
Line 9: Line 9:
  
 
  #include <maths>
 
  #include <maths>
  var a:=exp(23.4);
+
   
 +
function void main() {
 +
    var a:=exp(23.4);
 +
};
  
 
''Since: Version 1.0''
 
''Since: Version 1.0''

Revision as of 14:33, 15 April 2013

Overview

This exp(x) function will return the exponent of x (e to the power of x).

Example

#include <maths>

function void main() {
   var a:=exp(23.4);
};

Since: Version 1.0