NormalDistFuzzySet constructor

NormalDistFuzzySet([
  1. double left = 0,
  2. double midpoint = 0,
  3. double right = 0,
  4. double standardDeviation = 0,
])

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;
}