10 lines
189 B
C
10 lines
189 B
C
#ifndef SIGMOID_H_INCLUDED
|
|
#define SIGMOID_H_INCLUDED
|
|
|
|
#include "cmath"
|
|
|
|
double sigmoid(const double &x);
|
|
|
|
double xk(const int & k, const int & nm);
|
|
|
|
#endif // SIGMOID_H_INCLUDED
|