Code covered by the BSD License
-
P=ipeak(DataMatrix,PeakD,AmpT...
Version 3.91, FitW now equals number of points, not number of intervals;
-
AmpTSlider(n,h)
Changes AmpThreshold when the AmpThreshold slider is moved.
-
BGSlider(n,h)
Called when the BG slider is clicked.
-
FitSlider(n,h)
Changes FitWidth when the FitWidth slider is moved.
-
P=findpeaks(x,y,SlopeThreshol...
function P=findpeaks(x,y,SlopeThreshold,AmpThreshold,smoothwidth,peakgroup)
-
P=findpeaks(x,y,SlopeThreshol...
function P=findpeaks(x,y,SlopeThreshold,AmpThreshold,smoothwidth,peakgroup,smoothtype)
-
P=findpeakslidersRedraw(x,y,S...
Redraws graph for FindPeakSliders when slider are moved.
-
PeakSlider(n,h)
Changes PeakNumber when the Peak slider is moved.
-
SlopeTSlider(n,h)
Changes SlopeThreshold when the SlopeThreshold slider is moved.
-
SmoothSlider(n,h)
Changes SmoothWidth when the SmoothWidth slider is moved.
-
V=findvalleys(x,y,SlopeThresh...
function P=findvalleys(x,y,SlopeThreshold,AmpThreshold,smoothwidth,peakgroup,smoothtype)
-
[index,closestval]=val2ind(x,...
Returns the index and the value of the element of vector x that is closest to val
-
d=deriv(a)
First derivative of vector using 2-point central difference.
-
d=secderiv(a)
Second derivative of vector using 3-point central difference.
-
exp(-((x-pos)./(0.6006.*wid))...
-
lorentzian(x,position,width)
-
rtslid(fig,f,hh,varargin)
RTSLID Slider widget that responds to dragging realtime
-
smoothwidth. Works well with ...
-
sy=condense(y,n)
Condense y by a factor of n, where n is a non-zero positive integer.
-
Demo4peaks.m
-
DemoFindPeak.m
-
DemoFindPeak.m
-
DemoFindPeakSliders.m
-
DemoFindPeakSliders2.m
-
DemoFindPeakSlidersG.m
-
FindPeakSliders.m
-
FindPeakSlidersG.m
-
RedrawPeak.m
-
TestPeakfind.m
-
ipeakdemo.m
-
ipeakdemo1.m
-
ipeakdemo2.m
-
ipeakdemo3.m
-
ipeakdemo4.m
-
View all files
from
Peak finding and measurement
by Tom O'Haver
Function to locate and measure the positive peaks and valleys in noisy data sets.
|
| DemoFindPeakSlidersG.m |
% Interactive demo of findpeaks function with peak-zoom feature.
% You can adjust the 5 sliders to determine what
% values of the parameters give the most reliable peak detection.
% The 5 parameters are:
% SlopeThreshold - Slope of the smoothed third-derivative that is taken
% to indicate a peak. Larger values will neglect small features.
% AmpThreshold - Any peaks with height less than AmpThreshold are ignored.
% SmoothWidth - Width of smooth functions applied to data before slope is
% measured. Larger values will neglect small features. A reasonable value is
% about equal to 1/2 of the width of the peaks.
% FitWidth - The number of points around the "top part" of the (unsmoothed)
% peak that are taken to determine the peak height, positions, and width.
% A reasonable value is about equal to 1/2 of the width of the peaks.
% Peak - This slider zooms in on any one of the detected peaks, and shows
% the fitted top of the peak (FitWidth) as a blue curve. To see all the
% peaks, set the Peaks slider to zero (all the way down).
% Tom O'Haver (toh@umd.edu). Version 1.6 October 26, 2006
warning off MATLAB:polyfit:RepeatedPointsOrRescale
format compact
clear
close
global x
global y
global SlopeThreshold
global AmpThreshold
global SmoothWidth
global FitWidth
global PeakNumber
global P
figure(1)
% Simulate data set
increment=5;
x=[200:increment:4000];
% For each simulated peak, enter the amplitude, position, and width below
amp=randn(1,39); % Amplitudes of the peaks
pos=[200:100:4000]; % Positions of the peaks
wid=60.*ones(size(pos)); % Widths of the peaks
Noise=.02;
% A = matrix containing one of the unit-amplidude peak in each of its srow
A = zeros(length(pos),length(x));
for k=1:length(pos)
if amp(k)>0, A(k,:)=gaussian(x,pos(k),wid(k)); end; % Or you can use any other peak function
end
z=amp*A; % Multiplies each row by the corresponding amplitude and adds them up
y=z+Noise.*randn(size(z));
y=y+lorentzian(x,0,4000); % Adds background signal
% Call the interactive findpeaks script
FindPeakSlidersG;
%Print out peak table in Matlab Command window
P
|
|
Contact us at files@mathworks.com