From b53f7f304430052a765303e2ec5e4eaacbdf5b63 Mon Sep 17 00:00:00 2001 From: sakul-45 <81963567+sakul-45@users.noreply.github.com> Date: Wed, 14 Jul 2021 12:06:16 +0200 Subject: [PATCH] Custom simulation function for esfit. --- thyme.m | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 thyme.m diff --git a/thyme.m b/thyme.m new file mode 100644 index 0000000..0d2d6e2 --- /dev/null +++ b/thyme.m @@ -0,0 +1,9 @@ +function y = thyme(Sys,Exp,Opt) +%THYME custom function for easyspin fitting +% +% Takes Triplett populations into account when performing esfit. +% Call as [B,Spec] = esfit('thyme',Sys,Exp,Opt); + + Exp.Temperature = Sys.Temperature; + y = pepper(Sys,Exp,Opt); +end \ No newline at end of file