We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f82305b commit 726fef7Copy full SHA for 726fef7
fuzzy/classes.py
@@ -298,6 +298,18 @@ def intensified(self):
298
else:
299
return 1 - 2(1 - x**2)
300
301
+ def dilatated(self):
302
+ """Expands the set with more values and already included values are enhanced.
303
+ TODO: implement this as a new set?"""
304
+ return NotImplemented
305
+ return x ** 1./2.
306
+
307
+ def multiplication(self, n):
308
+ """Set is multiplied with a constant factor, which changes all membership values.
309
310
311
+ return x * n
312
313
def plot(self):
314
"""Graph the set.
315
Use the bounds and resolution of the domain to display the set
0 commit comments