From 24891f8c1578a973420386a43febdb8a01ebd415 Mon Sep 17 00:00:00 2001 From: sakul-45 <81963567+sakul-45@users.noreply.github.com> Date: Thu, 15 Jul 2021 18:03:53 +0200 Subject: [PATCH] corrected fatal assignment error --- thyme.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thyme.m b/thyme.m index 0d2d6e2..f03b771 100644 --- a/thyme.m +++ b/thyme.m @@ -4,6 +4,6 @@ function y = thyme(Sys,Exp,Opt) % Takes Triplett populations into account when performing esfit. % Call as [B,Spec] = esfit('thyme',Sys,Exp,Opt); - Exp.Temperature = Sys.Temperature; + Sys.Temperature = Exp.Temperature; y = pepper(Sys,Exp,Opt); end \ No newline at end of file