NNetCpp
Neural network implementation in C++
Main Page
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
src
netbuilding
InputNode.h
1
#ifndef INPUT_NODE_H
2
#define INPUT_NODE_H
3
4
#include "Node.h"
5
9
class
InputNode
:
public
Node
{
10
private
:
11
double
value = 0;
12
13
public
:
17
InputNode
();
18
24
InputNode
(
double
value);
25
31
double
getOutput
();
32
38
void
setValue
(
double
value);
39
};
40
41
#endif // INPUT_NODE_H
Node
Definition:
Node.h:7
InputNode
Definition:
InputNode.h:9
InputNode::InputNode
InputNode()
Definition:
InputNode.cpp:3
InputNode::getOutput
double getOutput()
Definition:
InputNode.cpp:7
InputNode::setValue
void setValue(double value)
Definition:
InputNode.cpp:12
Generated by
1.8.6