RosettaCodeData/Task/Real-constants-and-functions/Ruby/real-constants-and-functions.rb

14 lines
243 B
Ruby
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
x.abs #absolute value
2015-02-20 00:35:01 -05:00
x.magnitude #absolute value
2013-04-10 23:57:08 -07:00
x.floor #floor
x.ceil #ceiling
x ** y #power
2015-02-20 00:35:01 -05:00
include Math
E #e
PI #pi
sqrt(x) #square root
log(x) #natural logarithm
log(x, y) #logarithm base y
log10(x) #base 10 logarithm
exp(x) #exponential