Difference between revisions of "Installation"

From Artificial Neural Network for PHP
Line 23: Line 23:
 
?>
 
?>
 
</source>
 
</source>
  +
  +
* Learn to use the library. Have a look to chapter [[Examples]].

Revision as of 11:02, 21 December 2007

ANN - Artificial Neural Network for PHP 5.x

This chapter describes the steps to implement the ANN source code to your project.


Installation

  • Unpack the source code
>tar -xzf ann200.tar.gz
  • Copy the directory ANN to your library directory of your project.
  • Including to your source
<?php

require_once ('ANN/ANN_Network.php');

$ann = new ANN_Network;

?>
  • Learn to use the library. Have a look to chapter Examples.