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

    Posted on March 17th, 2009 RubyLove No comments

    Returns the arc cosine of the argument provided in radians.

    PHP

    echo acos(0.7);
    // => 0.79539883018414;

    Ruby

    puts Math.acos(0.7);
    # => 0.79539883018414;

    Leave a reply