<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.stats.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.stats-cdf-chisquare.php',
    1 => 'stats_cdf_chisquare',
    2 => 'Calcule un param&egrave;tre de la distribution du chi-deux en fonction des autres valeurs',
  ),
  'up' => 
  array (
    0 => 'ref.stats.php',
    1 => 'Fonctions de Statistic',
  ),
  'prev' => 
  array (
    0 => 'function.stats-cdf-cauchy.php',
    1 => 'stats_cdf_cauchy',
  ),
  'next' => 
  array (
    0 => 'function.stats-cdf-exponential.php',
    1 => 'stats_cdf_exponential',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/stats/functions/stats-cdf-chisquare.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.stats-cdf-chisquare" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">stats_cdf_chisquare</h1>
  <p class="verinfo">(PECL stats &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">stats_cdf_chisquare</span> &mdash; <span class="dc-title">Calcule un paramètre de la distribution du chi-deux en fonction des autres valeurs</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.stats-cdf-chisquare-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>stats_cdf_chisquare</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$par1</code></span>, <span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$par2</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$which</code></span>): <span class="type"><a href="language.types.float.php" class="type float">float</a></span></div>

  <p class="para rdfs-comment">
   Renvoie la fonction de distribution cumulative, son inverse, ou un des paramètres,
   de la distribution du chi-deux. Le type de la valeur de retour et les paramètres (<code class="parameter">par1</code>
   et <code class="parameter">par2</code>) sont déterminés par
   <code class="parameter">which</code>.
  </p>
  <p class="para">
   La table suivante liste la valeur de retour et les paramètres par <code class="parameter">which</code>.
   CDF, x, et k désignent la fonction de distribution cumulative, la valeur de la variable aléatoire,
   et le degré de liberté de la distribution du chi-deux, respectivement.
   <table class="doctable table">
    <caption><strong>Valeur de retour et paramètres</strong></caption>
    
     <thead>
      <tr>
       <th><code class="parameter">which</code></th>
       <th>Valeur de retour</th>
       <th><code class="parameter">par1</code></th>
       <th><code class="parameter">par2</code></th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>1</td>
       <td>CDF</td>
       <td>x</td>
       <td>k</td>
      </tr>

      <tr>
       <td>2</td>
       <td>x</td>
       <td>CDF</td>
       <td>k</td>
      </tr>

      <tr>
       <td>3</td>
       <td>k</td>
       <td>x</td>
       <td>CDF</td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.stats-cdf-chisquare-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">par1</code></dt>
     <dd>
      <p class="para">
       Le premier paramètre
      </p>
     </dd>
    
    
     <dt><code class="parameter">par2</code></dt>
     <dd>
      <p class="para">
       Le second paramètre
      </p>
     </dd>
    
    
     <dt><code class="parameter">which</code></dt>
     <dd>
      <p class="para">
       Le drapeau pour déterminer ce qui doit être calculé
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.stats-cdf-chisquare-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="para">
   Renvoie CDF, x, ou k, déterminé par <code class="parameter">which</code>.
  </p>
 </div>


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