Create a new peaklist, looking for peaks in the specified curve between Start and End


Namespace: PalmSens
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal c As Curve,  _ 
   ByVal MinPeakWidth As Single,  _ 
   ByVal MinPeakHeight As Single,  _ 
   ByVal Start As Integer,  _ 
   ByVal End As Integer _ 
)
C#
public PeakList(
   Curve c,
   float MinPeakWidth,
   float MinPeakHeight,
   int Start,
   int End
)
C++
public:
 PeakList(
   Curve c,
   float MinPeakWidth,
   float MinPeakHeight,
   int Start,
   int End
) sealed 
J#
public PeakList(
   Curve c,
   float MinPeakWidth,
   float MinPeakHeight,
   int Start,
   int End
)
JScript
public function PeakList(
   c : Curve,
   MinPeakWidth : float,
   MinPeakHeight : float,
   Start : int,
   End : int
)

Parameters

c
curve to use
MinPeakWidth
minimum width before considering something a peak
MinPeakHeight
minimum height before considering something a peak
Start
a starting point on the x axis
End
an ending point on the x axis

See Also