Selects and returns a list of
CopyC#
Extrema
e that satisfy the
CopyC#
FilterDelegate
.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public List<Extrema> SelectPeaks(
	Func<Extrema, bool> FilterDelegate
)
Visual Basic (Declaration)
Public Function SelectPeaks ( _
	FilterDelegate As Func(Of Extrema, Boolean) _
) As List(Of Extrema)
Visual C++
public:
List<Extrema>^ SelectPeaks(
	Func<Extrema, bool>^ FilterDelegate
)

Parameters

FilterDelegate
Type: System..::.Func<(Of <(Extrema, Boolean>)>)
The filter delegate

Return Value

A list of Extrema that satisified the delegate (returned true).

See Also