Visual network topoloy

From Artificial Neural Network for PHP
Revision as of 18:41, 6 January 2008 by Thwien (talk | contribs) (New page: == PNG image of network topology == <source lang="php"> require_once 'ANN/ANN_Network.php'; try { $network = ANN_Network::loadFromFile('xor.dat'); } catch(Exception $e) { print 'Netw...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

PNG image of network topology

require_once 'ANN/ANN_Network.php';

try
{
  $network = ANN_Network::loadFromFile('xor.dat');
}
catch(Exception $e)
{
  print 'Network not found';
  exit;
}

$image = new ANN_NetworkGraph($network);

$image->printImage();