Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17710 программистов и 1746 роботов. Сейчас ищут 1228 программистов ...
The FANNConnection class
Вернуться к: FANN
(Информация о версии неизвестна, возможно, только в SVN)
Введение
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().
Обзор классов
FANNConnection
{
/* Свойства */
public
$from_neuron
;
public
$to_neuron
;
public
$weight
;
/* Методы */
}Свойства
- from_neuron
-
The neuron where the connection starts.
- to_neuron
-
The neuron where the connection ends.
- weight
-
The weight of the connection.
Содержание
- FANNConnection::__construct — The connection constructor
- FANNConnection::getFromNeuron — Returns the postions of starting neuron.
- FANNConnection::getToNeuron — Returns the postions of terminating neuron
- FANNConnection::getWeight — Returns the connection weight
- FANNConnection::setWeight — Sets the connections weight
Вернуться к: FANN