Convert PHP code into Ruby!
RSS icon Email icon Home icon
  • cos

    Posted on March 14th, 2009 RubyLove No comments

    Returns the cosine of the argument provided in radians.

    PHP

    echo cos(0.5);
    // => 0.87758256189037;

    Ruby

    puts Math.cos(0.5);
    # => 0.877582561890373;

    Leave a reply