C# Class LibiadaWeb.Models.FragmentData

The fragment data of local characteristics (sliding window).
显示文件 Open project: intervals-mining-lab/libiada-web Class Usage Examples

Public Properties

Property Type Description
Characteristics double[]
Length int
Name string
Start int

Public Methods

Method Description
FragmentData ( double characteristics, string name, int start, int length )

Initializes a new instance of the FragmentData class.

Method Details

FragmentData() public method

Initializes a new instance of the FragmentData class.
public FragmentData ( double characteristics, string name, int start, int length )
characteristics double /// The characteristics values. ///
name string /// The name of the fragment. ///
start int /// The starting position of the fragment in full sequence. ///
length int /// The length of the fragment. ///

Property Details

Characteristics public_oe property

The characteristics values.
public double[] Characteristics
return double[]

Length public_oe property

The length of the fragment.
public int Length
return int

Name public_oe property

The name of the fragment.
public string Name
return string

Start public_oe property

The starting position of the fragment in full sequence.
public int Start
return int