<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.math.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.atan2.php',
    1 => 'atan2',
    2 => 'Arc tangent of two variables',
  ),
  'up' => 
  array (
    0 => 'ref.math.php',
    1 => 'Math İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.atan.php',
    1 => 'atan',
  ),
  'next' => 
  array (
    0 => 'function.atanh.php',
    1 => 'atanh',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/math/functions/atan2.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.atan2" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">atan2</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">atan2</span> &mdash; <span class="dc-title">Arc tangent of two variables</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.atan2-description">
  <h3 class="title">Açıklama</h3>
   <div class="methodsynopsis dc-description">
    <span class="methodname"><strong>atan2</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$y</code></span>, <span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$x</code></span>): <span class="type"><a href="language.types.float.php" class="type float">float</a></span></div>

  <p class="simpara">
   This function calculates the arc tangent of the two variables
   <code class="parameter">x</code> and <code class="parameter">y</code>.  It is
   similar to calculating the arc tangent of
   <code class="parameter">y</code> / <code class="parameter">x</code>, except that
   the signs of both arguments are used to determine the quadrant of
   the result.
  </p>
  <p class="simpara">
   The function returns the result in radians, which is between -PI
   and PI (inclusive).
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.atan2-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">y</code></dt>
     <dd>
      <p class="para">
       Dividend parameter
      </p>
     </dd>
    
    
     <dt><code class="parameter">x</code></dt>
     <dd>
      <p class="para">
       Divisor parameter
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.atan2-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   The arc tangent of <code class="parameter">y</code>/<code class="parameter">x</code> 
   in radians.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.atan2-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.atan.php" class="function" rel="rdfs-seeAlso">atan()</a> - Arc tangent</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer($setup); ?>