| VF_localminima | VD_localminima | VE_localminima |
|
| Function | Find the indices of local minima |
|
| Syntax C/C++ | #include <VFstd.h>
ui VF_localminima( uiVector Ind, fVector X, ui size ); |
| C++ VecObj | #include <OptiVec.h>
ui vector<ui>::localminima( const vector<T>& Ind ); |
| Pascal/Delphi | uses VFstd;
function VF_localminima( Ind:uiVector; X:fVector; size:UIntSize ):UIntSize; |
|
| Description | The indices of local minima in X are stored in Ind and the number of local minima is returned (this is the number of elements of Ind). A local minimum is defined as one element of X that is smaller than both its neighbours to the right and to the left. That means that the zero'th and the last element of X (which have only one neighbour) cannot be local minima. Also, if two adjacent elements are equal, none of them can be a local minimum. |
|
|
| Return value | number of local minima found |
|
|