
Fuzzy Data and
Processing
303
which one to pass on to the resultant set is a simple min-max choice.
This method is detailed in the next section.
Code for Fuzzy Set Operations
This section provides a set of routines for basic fuzzy set operations.
They all use piecewise linear approximations to the membership
function. Declarations for the FuzzySet class are as follows:
class FuzzySet {
public:
FuzzySet 0 ;
FuzzySet ( int npts , double *xpts , double *ypts ) ;
FuzzySet ( double xO , double yO , double x1 , double y1 ,
double x2 , double y2 , double x3 , double y3 ) ;
FuzzySet ( const FuzzySetÄ s ) ;
void operator ( const FuzzySetÄ s ) ;
-FuzzySe ...