Accord.Statistics.Kernels.Anova.Anova C# (CSharp) Method

Anova() public method

Constructs a new ANOVA Kernel.
public Anova ( int vectorLength, int subsequenceLength ) : System
vectorLength int Length of the input vector.
subsequenceLength int Length of the subsequences for the ANOVA decomposition.
return System
        public Anova(int vectorLength, int subsequenceLength)
        {
            this.n = vectorLength;
            this.p = subsequenceLength;
            this.K = new double[vectorLength, vectorLength, subsequenceLength];
        }