-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValueVector.h
30 lines (27 loc) · 1.16 KB
/
ValueVector.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/******************************************************************************
* ANNKit is a platform independent C++ implementation of a 3 layer
* neural net trained by back propagation.
*
* Copyright of Gerry Ens and GoWest Robotics. www.GoWestRobotics.com
* You are free to use, alter and redistribute this code for all non-commercial
* purposes. Commercial use is also allowed under these conditions:
* 1) Notify the author by email at: Gerry@GoWestRobotics.com
* 2) Include this header intact somewhere in any file using all or part of
* this code
* 3) Clearly mark any modifications to this code
*****************************************************************************/
#ifndef __VALUEVECTOR_CLASS__
#define __VALUEVECTOR_CLASS__
#include <vector>
/******************************************************************************
CValueVector is a vector of doubles.
There is no other added functionality
******************************************************************************/
class CValueVector : public std::vector<double>
{
public:
CValueVector(void);
CValueVector(int n);
virtual ~CValueVector(void);
};
#endif //__VALUEVECTOR_CLASS__