The FANNConnection class

(No version information available, might only be in Git)

Introduction

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().

Class synopsis

classFANNConnection {
public$to_neuron;
public$weight;
public__construct(int$from_neuron, int$to_neuron, float$weight)
publicgetToNeuron(): int
publicgetWeight(): void
publicsetWeight(float$weight): void
}

Properties

from_neuron

The neuron where the connection starts.

to_neuron

The neuron where the connection ends.

weight

The weight of the connection.

Table of Contents

To Top