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