Encapsulates one XY value pair in a fuzzy set (see TFuzzySet). The collection of TFuzzySetValues defines the shape of a fuzzy set.
Namespace: FuzzyLogic
TCollectionItem
FuzzyLogic.TFuzzySetValue
|
Delphi
|
type
TFuzzySetValue = class(TCollectionItem)
end;
|
|
Name
|
Description
|
|
FuzzySetValues
|
Specifies the collection of fuzzy set values
|
|
X
|
Defines the X location of the XY value pair. Changing the X value may change the location (index) of the value in the collection. The X value must be between the XMaximum and XMinimum values of the fuzzy set.
|
|
Y
|
Defines Y, or truth membership, for the XY value pair. The Y value typically ranges from 0 (no membership or FALSE) to 1 (full membership or TRUE), though it may be a value more than 1.
|
Top
|
Fuzzy Set truth values are determined by the XY value pairs that make up their "shape". The XY value pairs define a 2D plot. The X range varies over the universe of discourse. The Y Range varies from 0 (completely not a member) to 1 (completely a member). For example, the fuzzy set cold above would have the following XY value pairs: ((20 1) (32 0.5) (50 0.4) (60 0)).
|