You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parentParser.add_argument('--noise-strength', type=float, default=0.5, help='the strength of the noise. The default value is 0.5')
128
137
parentParser.add_argument('--drift', type=float, default=0.0, help='the drift of the noise. The default value is 0.0')
138
+
parentParser.add_argument('--noise-type', type=str, default='normal', help='the type of noise that should be generated. The default value is "normal" (a normal distribution). Alternativly, you can use "sin" for noise a sine wave like noise, or "mix for a bixture of both"')
129
139
130
140
# subcommands
131
141
subparsers=parser.add_subparsers(dest='mode', help='the program can use an epics interface or create a debug enviroment for another script')
0 commit comments