Search found 186 matches

by katarkon
Wed May 26, 2021 12:38 am
Forum: Bugs
Topic: Inconvenient work of eprload with MS5000 xml files
Replies: 6
Views: 9517

Re: Inconvenient work of eprload with MS5000 xml files

Thanks for explanation. It's indeed true.

by katarkon
Thu May 20, 2021 11:19 pm
Forum: Bugs
Topic: Inconvenient work of eprload with MS5000 xml files
Replies: 6
Views: 9517

Re: Inconvenient work of eprload with MS5000 xml files

>> [x,y,p]=eprload('Cudppeth_05_tmp_-3C.xml');
disp(p.MwFreq)
gives an answer 9.4719.
>> par=xml2struct('Cudppeth_05_tmp_-3C.xml');
disp(par.ESRXmlFile.Data.Measurement.Attributes.MwFreq)
gives correct answer 9.47186304271149.

by katarkon
Thu May 20, 2021 2:14 am
Forum: Bugs
Topic: Inconvenient work of eprload with MS5000 xml files
Replies: 6
Views: 9517

Re: Inconvenient work of eprload with MS5000 xml files

There is the example of the xml file.
I've additionally found that the private function xml2struct.p give expected results.

by katarkon
Wed May 12, 2021 1:52 am
Forum: Bugs
Topic: Inconvenient work of eprload with MS5000 xml files
Replies: 6
Views: 9517

Inconvenient work of eprload with MS5000 xml files

I have found that standard xml readed by eprload output file contains relatively roughly rounded values (4 signs after decimal points). Initial xml file contains more precision values in the field like <Measurement Name="Cudppeth_05_tmp_-43C" Device="MS-5000 [11-0273]" FWV="...
by katarkon
Sat Jan 09, 2021 2:41 am
Forum: General forum
Topic: About examples of EPR spectra in "example" page of Easyspin (radical anion and cation)
Replies: 3
Views: 1639

Re: About examples of EPR spectra in "example" page of Easyspin (radical anion and cation)

You may save the figure in appropriate graphic format like eps and open in any graphic editor like inkscape, coreldraw and etc.

by katarkon
Sat Oct 17, 2020 2:07 am
Forum: General forum
Topic: double quantum transitions for cwEPR?
Replies: 1
Views: 1285

Re: double quantum transitions for cwEPR?

Try to use Opt.PlotThreshold=0 in the parameters of levelsplot (or try the values between 0 and 0.001 if necessary). Opt.PlotThreshold=0.001 by default, it should cut off weak transitions.

by katarkon
Thu Oct 15, 2020 12:13 am
Forum: Bugs
Topic: Error in documentation
Replies: 1
Views: 3453

Error in documentation

In the description of the fast-motion line broadening (https://easyspin.org/easyspin/documentation/fastmotionregime.html) there is probably an error in the formula for coefficient C. It should be (deltaA:deltaA) instead (deltag:deltaA) either conversion coefficient from g-factor to angular frequency...
by katarkon
Sun Oct 11, 2020 11:12 pm
Forum: General forum
Topic: How does the program calculate the population of triplet sublevels?
Replies: 3
Views: 1784

Re: How does the program calculate the population of triplet sublevels?

Exp.Temperature defines the populations of the zero-field electron states, from lowest to highest energy (in Your case with the order ms=0,-1,+1), so it should be Exp.Temperature=[1 1.1 1.1].

by katarkon
Fri Apr 17, 2020 6:30 am
Forum: General forum
Topic: Euler to polar angles for levelsplot
Replies: 5
Views: 3438

Re: Euler to polar angles for levelsplot

I don't completely shure, but You should use active rotation matrix Ra=Rp.' in this case as it's described in the erot documrntation.
by katarkon
Fri Apr 10, 2020 2:52 am
Forum: General forum
Topic: Resize the esfit GUI?
Replies: 1
Views: 1726

Re: Resize the esfit GUI?

Generally, You have to get the appropriate object handler and change its properties. Here the examlpe how to change the properties of the lines. ... esfit('exchange',y,Sys,Vary,Exp,Opt,FitOpt); h = findobj(gcf,'Type','line') set(h(4),'Marker','none'); set(h(2),'LineStyle',':'); The properties of the...