Home  > Language reference > Functions > atan2
Perl 5 version 32.0 documentation

atan2

Perl functions A-Z | Perl functions by category | The 'perlfunc' manpage
  • atan2 Y,X

    Returns the arctangent of Y/X in the range -PI to PI.

    For the tangent operation, you may use the Math::Trig::tan function, or use the familiar relation:

    1. sub tan { sin($_[0]) / cos($_[0]) }

    The return value for atan2(0,0) is implementation-defined; consult your atan2(3) manpage for more information.

    Portability issues: atan2 in perlport.

  • Site info

  • Docs mantained by Perl 5 Porters
  • Perldoc site development sponsored by OpusVL Logo
  • About PerlDOC
  • Manuals

  • Overview
  • Tutorials
  • FAQs
  • Changes
  • Reference

  • Language
  • Functions
  • Operators
  • Variables
  • Modules

  • Modules
  • Pragmas
  • Utilities
  • Misc

  • License
  • Internals
  • Platforms
  • About
perldoc.perl.org - Official documentation for the Perl programming language
This website is a Beta release. For any issues please raise a ticket on GitHub