<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.fann.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.fann-create-standard-array.php',
    1 => 'fann_create_standard_array',
    2 => 'Creates a standard fully connected backpropagation neural network using an array of layer sizes',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann 関数',
  ),
  'prev' => 
  array (
    0 => 'function.fann-create-standard.php',
    1 => 'fann_create_standard',
  ),
  'next' => 
  array (
    0 => 'function.fann-create-train.php',
    1 => 'fann_create_train',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-create-standard-array.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fann-create-standard-array" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_create_standard_array</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_create_standard_array</span> &mdash; <span class="dc-title">Creates a standard fully connected backpropagation neural network using an array of layer sizes</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-create-standard-array-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_create_standard_array</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$num_layers</code></span>, <span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$layers</code></span>): <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span></div>

  <p class="para rdfs-comment">
   Creates a standard fully connected backpropagation neural network.
  </p>
  <p class="para">
   There will be a bias neuron in each layer (except the output layer),
   and this bias neuron will be connected to all neurons in the next layer.
   When running the network, the bias nodes always emits 1.
  </p>
  <p class="para">
   To destroy a neural network use the <span class="function"><a href="function.fann-destroy.php" class="function">fann_destroy()</a></span> function.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-create-standard-array-parameters">
  <h3 class="title">パラメータ</h3>
  <dl>
   
    <dt><code class="parameter">num_layers</code></dt>
    <dd>
     <p class="para">
      The total number of layers including the input and the output layer.
     </p>
    </dd>
   
   
    <dt><code class="parameter">layers</code></dt>
    <dd>
     <p class="para">
      An array of layer sizes.
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-create-standard-array-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   Returns a neural network resource on success, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on error.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.fann-create-standard-array-seealso">
  <h3 class="title">参考</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.fann-create-standard.php" class="function" rel="rdfs-seeAlso">fann_create_standard()</a> - Creates a standard fully connected backpropagation neural network</span></li>
    <li><span class="function"><a href="function.fann-create-sparse.php" class="function" rel="rdfs-seeAlso">fann_create_sparse()</a> - Creates a standard backpropagation neural network, which is not fully connected</span></li>
    <li><span class="function"><a href="function.fann-create-shortcut.php" class="function" rel="rdfs-seeAlso">fann_create_shortcut()</a> - Creates a standard backpropagation neural network which is not fully connectected and has shortcut connections</span></li>
   </ul>
  </p>
 </div>


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