From bf83c2fb22ecb15da0dae902c3b785e4aa327c8d Mon Sep 17 00:00:00 2001 From: Luis Fabregas Date: Tue, 28 Jun 2022 14:38:22 +0200 Subject: [PATCH] remove unused lines in example --- examples/basic/ex_simulate_4pdeer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/basic/ex_simulate_4pdeer.py b/examples/basic/ex_simulate_4pdeer.py index f460e32c4..bcf915d47 100644 --- a/examples/basic/ex_simulate_4pdeer.py +++ b/examples/basic/ex_simulate_4pdeer.py @@ -42,8 +42,6 @@ # Construct the dipolar signal model Vmodel = dl.dipolarmodel(t,r,Pmodel=dl.dd_gauss, experiment=experiment) -# Function for the scaled background -Vinter_fcn = lambda mod,conc: (1-mod)*dl.bg_hom3d(t,conc,mod) # Function for the scaled background Vinter_fcn = lambda lam1,lam23,conc: (1-lam1-2*lam23)*dl.bg_hom3d(t-reftime1,conc,lam1)*dl.bg_hom3d(t-reftime2,conc,lam23)*dl.bg_hom3d(t-reftime3,conc,lam23)