MCAEmotiv.Classification.Example.Example C# (CSharp) Method

Example() public method

Construct an example with the specified class and feature data. Makes a copy of features. To preserve immutability.
public Example ( int cls, IEnumerable features ) : System
cls int
features IEnumerable
return System
        public Example(int cls, IEnumerable<double> features)
            : this(cls, features.ToIArray())
        {
        }

Same methods

Example::Example ( int cls, IArrayView features ) : System