Skip to content

Intouchables120/ElecSusTestData

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

Test data files and metadata for ElecSus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors