clear all
close all

counts = textread('1.001.txt');
counts = [counts ; textread('2.001.txt')];
%counts2 = textread('2.001.txt');

time = .25:.25:length(counts)/4;

simulated = 4327+4327*sin(.4*time);

figure
plot(time,counts);

print -depsc 'envelope'
