FANN
PHP Manual

The FANNConnection class

(No hay información de versión disponible, podría estar únicamente en SVN)

Introducción

FANNConnection is used for the neural network connection. The objects of this class are used in fann_get_connection_array() and fann_set_weight_array().

Sinopsis de la Clase

FANNConnection {
/* Propiedades */
public $from_neuron ;
public $to_neuron ;
public $weight ;
/* Métodos */
public __construct ( int $from_neuron , int $to_neuron , float $weight )
public int getFromNeuron ( void )
public int getToNeuron ( void )
public void getWeight ( void )
public bool setWeight ( float $weight )
}

Propiedades

from_neuron

The neuron where the connection starts.

to_neuron

The neuron where the connection ends.

weight

The weight of the connection.

Tabla de contenidos


FANN
PHP Manual