view Code/Descriptors/yin/private/minparabolic.m @ 3:e1cfa7765647

initial commit - this file calculates the basic set of metrics (mean, variance, min and max, from an array of supplied data.
author Dawn Black <dawn.black@eecs.qmul.ac.uk>
date Mon, 10 Sep 2012 09:20:12 +0100
parents ea0c737c6323
children
line wrap: on
line source
% [y,idx] = minparabolic(x) - locate minima using parabolic interpolation
%
%  x: input vector
%  y: same as x, with local minima replaced by interpolated minima
%  idx: position of interpolated minima (fractionary)
%
% At each local minimum of x, that sample and its neighbors are used to
% determine a parabola.  The minimum of the parabola is used as the new
% minimum value, the abscissa of the minimum is used as its position.