Arquivos
php-fann/tests/fann_run_basic.phpt
Jakub Zelenka 5fe0996266 Test fann_run
2013-02-12 18:33:50 +00:00

13 linhas
249 B
PHP

--TEST--
Test function fann_run() by calling it with its expected arguments
--FILE--
<?php
$ann = fann_create_standard( 3, 2, 2, 1 );
$input = array( 0.5, 0.5 );
var_dump( fann_run( $ann, $input ) );
?>
--EXPECTF--
array(1) {%a[0]=>%afloat(%f)%a}