Several "CrystalOrientation" + "Output = 'separate'" Bug?
Posted: Fri Sep 29, 2017 10:31 am
Something strange with the example "solidstate\cumnt2.m" in EasySpin 5.2.3
The spectra obtained are completely different than those were before.
If this code
replace with
then the spectra are the same as in previous versions of EasySpin 5.1.9 and older (taking into account the correction viewtopic.php?f=3&t=387).
The spectra obtained are completely different than those were before.
If this code
Code: Select all
Exp.CrystalOrientation = [0 0 0; 0 pi/2 0];
Opt.Output = 'separate';
[B,spec] = pepper(Sys,Exp,Opt);
spec1 = spec(1,:);
spec2 = spec(2,:);
Code: Select all
Exp.CrystalOrientation = [0 0 0];
[B,spec1] = pepper(Sys,Exp);
Exp.CrystalOrientation = [0 pi/2 0];
[B,spec2] = pepper(Sys,Exp);