-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmembershipfunction.h
46 lines (37 loc) · 1.08 KB
/
membershipfunction.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef MEMBERSHIPFUNCTION_H
#define MEMBERSHIPFUNCTION_H
#include "SistemasdeControle/headers/primitiveLibs/LinAlg/matrix.h"
namespace advancedModelHandler {
template <typename Type>
class MembershipFunction
{
public:
MembershipFunction(){}
virtual Type sim(Type x) = 0;
virtual LinAlg::Matrix<Type> sim(LinAlg::Matrix<Type> x) = 0;
virtual Type getAverage() = 0;
protected:
Type maxV(Type a, Type b)
{
if(a < b)
return b;
else
return a;
}
Type minV(Type a, Type b)
{
if(a > b)
return b;
else
return a;
}
};
}
//namespace membershipFunction {
// double triangular(double input, LinAlg::Matrix<double> left2rigth);
// double trapezoidal(double input, LinAlg::Matrix<double> left2rigth);
// double gaussiana(double input, LinAlg::Matrix<double> left2rigth);
// double maxV(double a,double b);
// double minV(double a,double b);
//}
#endif // MEMBERSHIPFUNCTION_H