Search found 6 matches
- Wed Dec 17, 2014 6:29 pm
- Forum: Announcements
- Topic: Support for non-Bruker file formats
- Replies: 4
- Views: 31408
Re: Support for non-Bruker file formats
SPECMAN Very up-to-date (having used SpecMan for the last year) https://github.com/morganbye/EPRtoolbox/blob/master/misc/SpecManRead.m JEOL Not used in a long time https://github.com/morganbye/EPRtoolbox/blob/master/misc/JeolRead.m VARIAN Old and rather infrequently used - but used with success, yo...
- Sun Aug 24, 2014 3:23 am
- Forum: General forum
- Topic: Trouble loading data
- Replies: 2
- Views: 5640
Re: Trouble loading data
*.spe files? Do you mean *.spe files or do you mean the Bruker *.spc files? If you do mean *.spe, then detail your spectrometer and give us a sample file to play with, something like a nitroxide at room temperature so that it's very obvious to us when if we've loaded the file correctly. That way we ...
- Tue Aug 12, 2014 5:43 am
- Forum: General forum
- Topic: esfit ignores some variables
- Replies: 2
- Views: 7455
Re: esfit ignores some variables
Ok, so I've played around with your code a little bit for the last 15 minutes over coffee and offer some suggestions: I don't know how Stefan has changed easyfit, but if you go back to ES versions from the start of Jan '13 you can try with the old versions when it did not have the GUI - just play ar...
- Mon Jul 28, 2014 3:02 am
- Forum: General forum
- Topic: Parallelization and esfit
- Replies: 6
- Views: 15713
Re: Parallelization and esfit
Parallelization in MatLab has been a tricky beast for many years and I've read countless discussion pages complaining how MatLab doesnt automatically distribute tasks amongst available resources (ie different threads of a single processor, or dual core Xeon rigs). Sticking the esfit command (wo/GUI)...
- Mon Jul 28, 2014 2:47 am
- Forum: General forum
- Topic: esfit and maxTime
- Replies: 8
- Views: 20575
Re: esfit and maxTime
You are correct, by moving the time control out of ES and into the while loop, when that time limit is reached any command that is running will be killed. So you are likely only wanting to be use my solution has a last-resort method - ie. you know your simulations take 1-2 mins and you have a lot qu...
- Sat Jul 26, 2014 5:39 am
- Forum: General forum
- Topic: esfit and maxTime
- Replies: 8
- Views: 20575
Re: esfit and maxTime
Another suggestion would be to parse how long pepper actually takes to run a single simulation through the use of tic and toc. tic; pepper(Sys,Exp); toc With that in hand you can get a better idea of how long you need to make FitOpt.maxTime. I'd perhaps take this one step further and remove the tim...