<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.stats-rand-gen-iuniform.php',
    1 => 'stats_rand_gen_iuniform',
    2 => 'Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive)',
  ),
  'up' => 
  array (
    0 => 'ref.stats.php',
    1 => 'Statistic Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.stats-rand-gen-ipoisson.php',
    1 => 'stats_rand_gen_ipoisson',
  ),
  'next' => 
  array (
    0 => 'function.stats-rand-gen-noncentral-chisquare.php',
    1 => 'stats_rand_gen_noncentral_chisquare',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/stats/functions/stats-rand-gen-iuniform.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.stats-rand-gen-iuniform" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">stats_rand_gen_iuniform</h1>
  <p class="verinfo">(PECL stats &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">stats_rand_gen_iuniform</span> &mdash; <span class="dc-title">Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive)</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.stats-rand-gen-iuniform-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>stats_rand_gen_iuniform</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$low</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$high</code></span>): <span class="type"><a href="language.types.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   Returns a random integer from the discrete uniform distribution between <code class="parameter">low</code> (inclusive)
   and <code class="parameter">high</code> (inclusive).
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.stats-rand-gen-iuniform-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">low</code></dt>
     <dd>
      <p class="para">
       The lower bound
      </p>
     </dd>
    
    
     <dt><code class="parameter">high</code></dt>
     <dd>
      <p class="para">
       The upper bound
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.stats-rand-gen-iuniform-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   A random integer
  </p>
 </div>


 


 


 


 


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