Accord.Statistics.Kernels.Anova.Anova C# (CSharp) 메소드

Anova() 공개 메소드

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.
리턴 System
        public Anova(int vectorLength, int subsequenceLength)
        {
            this.n = vectorLength;
            this.p = subsequenceLength;
            this.K = new double[vectorLength, vectorLength, subsequenceLength];
        }