Installation: Difference between revisions
From Artificial Neural Network for PHP
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== ANN - Artificial Neural Network for PHP 5.x == |
|||
This chapter describes the steps to implement the ANN source code to your project. |
This chapter describes the steps to implement the ANN source code to your project. |
||
Line 8: | Line 8: | ||
* Unpack the source code |
* Unpack the source code |
||
tar -xzf ann200.tar.gz |
>tar -xzf ann200.tar.gz |
||
* Copy the directory ANN to your library directory of your project. |
* Copy the directory ANN to your library directory of your project. |
Revision as of 22:56, 19 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;
?>