diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fc575f..df5654e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Random mode modified ## [0.7] - 2022-05-04 ### Added - `fill_data` function diff --git a/samila/params.py b/samila/params.py index 4075ac8..c3f1e95 100644 --- a/samila/params.py +++ b/samila/params.py @@ -68,6 +68,7 @@ RANDOM_COEF_LIST = [ "random.lognormvariate(0,1)"] ELEMENTS_LIST = [ + "{0}*math.atan({1})", "{0}*math.asinh({1})", "{0}*math.acosh(abs({1})+1)", "{0}*math.erf({1})", @@ -88,6 +89,8 @@ ARGUMENTS_LIST = [ "y-x", "x-y", "x+y", + "x**3", + "y**3", "x**2", "y**2", "(x**2)*y", @@ -97,4 +100,4 @@ ARGUMENTS_LIST = [ "x*(y**3)", "y*(x**3)"] -OPERATORS_LIST = ["+", "-", "*"] +OPERATORS_LIST = ["+", "-", "*", "/"]