Dynamic Light Scattering (DLS) is a technique used to determine size distributions of small particles in suspension or polymers in solution.
In our case, the auto-correlation function is of the following form
where
The picture (1) above (click to zoom) is a snip of a full resolution (200x10000) picture coming directly from the line camera. Each row of the image corresponds, in terms of the ACF described, to the intensity of the pixel in regards to
The data we work with comes directly from a DWS experiment involving foams. Inside a MATLAB data file (here not provided) we have a variable called g2_map
(51x508450) that contains all the correlation functions as columns. We check the behaviour of the sample by plotting its function of time (x-axis) and g(2) (y-axis) using the following command
semilogx(dt*lagtimes, g2_norm(:,100000),'r-')
Can we determine or at least highlight, when do transient events happen? Is there a way to automate the detection of the transient peaks shown in the first two pictures?