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