/ElecSusTestData

Test data files and metadata for ElecSus

Apache License 2.0Apache-2.0

ElecSusTestData

This repository provides example data to be used with ElecSus. Please see the new (2017) paper (https://arxiv.org/abs/1708.05305) for full details.

For all files, the first column is the experimental detuning axis in GHz, the second column is the spectroscopic signal at that detuning.

The data can be read into python using numpy, for example:

import numpy as np
data = np.loadtxt(filename, delimiter=',').T

where the .T on the end is the transpose of the array that is received from np.loadtxt(); the detuning axis will then be data[0], the data axis is data[1].

After reading-in, a quick plot of the data can be done with matplotlib via:

import matplotlib.pyplot as plt
plt.plot(data[0], data[1])
plt.show()