NormalDistFuzzySet constructor
NormalDistFuzzySet([])
Constructs a new triangular fuzzy set with the given values.
Implementation
NormalDistFuzzySet([ double left = 0, this.midpoint = 0, double right = 0, this.standardDeviation = 0 ]):super( midpoint ) {
this.left = left;
this.right = right;
}