예제 #1
0
 def default_with_distrubance(x):
     y = 2 + 2 * x + Distribution.normal(20)
     y[0] = 10
     y[19] = -10
     return y
예제 #2
0
 def default(x):
     return 2 + 2 * x + Distribution.normal(20)