Method: Math.sin

Defined in:
lib/source/ruby.rb

.sin(x) ⇒ Object

call-seq:

Math.sin(x) -> numeric

Computes the sine of x (in radians) and returns its value in the range -1..1.



1690
1691
1692
# File 'lib/source/ruby.rb', line 1690

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