corrected fatal assignment error

This commit is contained in:
sakul-45 2021-07-15 18:03:53 +02:00
parent 821ed661a4
commit 24891f8c15

View File

@ -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