Method: Math.exp

Defined in:
lib/source/ruby.rb

.exp(x) ⇒ Object

call-seq:

Math.exp(x) -> numeric

Returns e**(x).



1639
1640
1641
# File 'lib/source/ruby.rb', line 1639

def self.exp(x)
  `Math.exp(x)`
end