/// <summary> /// Returns the COMPLIMENT (inverse) of the Given Fuzzy Set /// </summary> /// <param name="fs">Fuzzy Set to find the compliment of</param> /// <returns>The Compliment Set</returns> public static FuzzySet ComplimentFS(FuzzySet fs) { FuzzySet fuzz = new FuzzySet(fs); fuzz.NotFS(fuzz); return fuzz; }