<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.fann-test.php',
    1 => 'fann_test',
    2 => 'Test with a set of inputs, and a set of desired outputs',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.fann-subset-train-data.php',
    1 => 'fann_subset_train_data',
  ),
  'next' => 
  array (
    0 => 'function.fann-test-data.php',
    1 => 'fann_test_data',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-test.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fann-test" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_test</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_test</span> &mdash; <span class="dc-title">Test with a set of inputs, and a set of desired outputs</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-test-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_test</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$ann</code></span>, <span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$input</code></span>, <span class="methodparam"><span class="type"><a href="language.types.array.php" class="type array">array</a></span> <code class="parameter">$desired_output</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Test with a set of inputs, and a set of desired outputs. This operation updates the mean square error,
   but does not change the network in any way.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-test-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <dl>
   
    <dt><code class="parameter">ann</code></dt>
    <dd>
     <p class="para">Sinir ağı özkaynağı.</p>
    </dd>
   
   
    <dt><code class="parameter">input</code></dt>
    <dd>
     <p class="para">
      An array of inputs. This array must be exactly <span class="function"><a href="function.fann-get-num-input.php" class="function">fann_get_num_input()</a></span> long.
     </p>
    </dd>
   
   
    <dt><code class="parameter">desired_output</code></dt>
    <dd>
     <p class="para">
      An array of desired outputs. This array must be exactly <span class="function"><a href="function.fann-get-num-output.php" class="function">fann_get_num_output()</a></span> long.
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-test-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">Returns test outputs 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-test-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.fann-test-data.php" class="function" rel="rdfs-seeAlso">fann_test_data()</a> - Test a set of training data and calculates the MSE for the training data</span></li>
    <li><span class="function"><a href="function.fann-train.php" class="function" rel="rdfs-seeAlso">fann_train()</a> - Train one iteration with a set of inputs, and a set of desired outputs</span></li>
    <li><span class="function"><a href="function.fann-get-num-input.php" class="function" rel="rdfs-seeAlso">fann_get_num_input()</a> - Get the number of input neurons</span></li>
    <li><span class="function"><a href="function.fann-get-num-output.php" class="function" rel="rdfs-seeAlso">fann_get_num_output()</a> - Get the number of output neurons</span></li>
   </ul>
  </p>
 </div>



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