def linear_response(*args,**kwargs):
     kwargs['smoothing'] = 0
     kwargs['cutoff'] = 0
     return smooth_piecewise_linear(*args,**kwargs)
Example #2
0
 def linear_response(*args,**kwargs):
     kwargs['smoothing'] = 0
     kwargs['cutoff'] = 0
     return smooth_piecewise_linear(*args,**kwargs)[:2]
 def smooth_piecewise_linear_response(*args,**kwargs):
     return smooth_piecewise_linear(*args,**kwargs)
 def piecewise_linear_response(*args,**kwargs):
     kwargs['smoothing'] = 0
     return smooth_piecewise_linear(*args,**kwargs)[:2]
Example #5
0
 def smooth_piecewise_linear_response(*args,**kwargs):
     return smooth_piecewise_linear(*args,**kwargs)[:2]
 def piecewise_linear_response(*args, **kwargs):
     kwargs['smoothing'] = 0
     return smooth_piecewise_linear(*args, **kwargs)
 def smooth_piecewise_linear_response(*args,**kwargs):
     #Note these need to override first-order functions
     #since second-derivatives are needed
     return smooth_piecewise_linear(*args,**kwargs)
 def smooth_piecewise_linear_response(*args, **kwargs):
     #Note these need to override first-order functions
     #since second-derivatives are needed
     return smooth_piecewise_linear(*args, **kwargs)