Code covered by the BSD License
-
DemoSmooth1(n,h)
Re-draws graph when smooth width slider is moved
-
DemoSmooth2(n,h)
Re-draws graph when number of passes slider is moved
-
DemoSmooth3(n,h)
Re-draws graph when the Resample slider is moved
-
SmoothSlider1(n,h)
Re-draws graph when smooth width slider is moved
-
SmoothSlider2(n,h)
Re-draws graph when smooth passes slider is moved
-
[PeakX, PeakY, Width]=PeakEst...
Least-squares estimate of peak height, position, and width of a Gaussian
-
exp(-((x-pos)./(0.6006.*wid))...
-
rtslid(fig,f,hh,varargin)
RTSLID Slider widget that responds to dragging realtime
-
s=bsmooth(a,w)
% Convolution...
-
s=bsmooth2(a,w)
% bsmooth(a,...
-
s=gsmooth(a,w)
% smooth(a,v) ...
-
s=tsmooth(Y,w)
% tsmooth(Y,w...
-
s=tsmooth2(Y,w)
% tsmooth(Y,...
-
smoothwidth. Faster than
% c...
-
smoothwidth. Works well with ...
-
DemoSmoothRedraw.m
-
DemoSmoothRedraw2.m
-
DemoSmoothSlider.m
-
DemoSmoothSlider2.m
-
SmoothSlider.m
-
SmoothSliderRedraw.m
-
SmoothSliderTest.m
-
View all files
from
Interactive Smoothing
by Tom O'Haver
Interactive smoothing for time-series signals
|
| s=bsmooth(a,w)
% Convolution-based boxcar smooth
% bsmooth(a,w) smooths vector a by a boxcar (rectangular window) of width w
% T. C. O'Haver, 1988.
v=ones(1,w);
S=conv(a,v);
startpoint=round((length(v) + 1)/2);
endpoint=round(length(a)+startpoint-1);
s= |
function s=bsmooth(a,w)
% Convolution-based boxcar smooth
% bsmooth(a,w) smooths vector a by a boxcar (rectangular window) of width w
% T. C. O'Haver, 1988.
v=ones(1,w);
S=conv(a,v);
startpoint=round((length(v) + 1)/2);
endpoint=round(length(a)+startpoint-1);
s=S(startpoint:endpoint) ./ sum(v);
|
|
Contact us at files@mathworks.com