EPR Simulations with EasySpin

From MC Chem Wiki
Revision as of 19:25, 7 February 2019 by Ballen (talk | contribs) (Created page with "== Overview == This page serves as a resource to assist those trying to simulate EPR spectra with the EasySpin MATLAB package. == Importing Data == EasySpin has a functio...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

This page serves as a resource to assist those trying to simulate EPR spectra with the EasySpin MATLAB package.

Importing Data

EasySpin has a function for doing this, called eprload(). The method used to import your data depends on the format in which your experimental data is saved:

  • For Modern Bruker Spectrometer Data:
    [B,spc] = eprload('mydata');
  • For Older Bruker Spectrometer Data:
    [B,spc] = eprload('myolddata.spc');
    [B,spc] = eprload('myolddata.par');

The function changes when you are trying to load a text file of data:

  • For Data Stored in Text Files:
    [B,spc] = textread('mydata.txt','%f %f');
  • Text Files with Header Information:
    [B,spc] = textread('mydata.txt','%f %f','headerlines',17)

Creating a Simulation