예제 #1
0
 /// <summary>
 /// Analyze the 1D array.
 /// </summary>
 ///
 /// <param name="array">The array to analyze.</param>
 public void Analyze(double[] array)
 {
     _fields    = new TemporalWindowField[1];
     _fields[0] = new TemporalWindowField("0")
     {
         Action = TemporalType.InputAndPredict
     };
 }
예제 #2
0
 public void Analyze(double[] array)
 {
     this._xa942970cc8a85fd4 = new TemporalWindowField[1];
     TemporalWindowField field = new TemporalWindowField("0") {
         Action = TemporalType.InputAndPredict
     };
     this._xa942970cc8a85fd4[0] = field;
 }
예제 #3
0
        /// <summary>
        /// Analyze the 2D array.
        /// </summary>
        ///
        /// <param name="array">The 2D array to analyze.</param>
        public void Analyze(double[][] array)
        {
            int length = array[0].Length;

            _fields = new TemporalWindowField[length];
            for (int i = 0; i < length; i++)
            {
                _fields[i] = new TemporalWindowField("" + i)
                {
                    Action = TemporalType.InputAndPredict
                };
            }
        }
 /// <summary>
 /// Analyze the 2D array.
 /// </summary>
 ///
 /// <param name="array">The 2D array to analyze.</param>
 public void Analyze(double[][] array)
 {
     int length = array[0].Length;
     _fields = new TemporalWindowField[length];
     for (int i = 0; i < length; i++)
     {
         _fields[i] = new TemporalWindowField("" + i) {Action = TemporalType.InputAndPredict};
     }
 }
 /// <summary>
 /// Analyze the 1D array.
 /// </summary>
 ///
 /// <param name="array">The array to analyze.</param>
 public void Analyze(double[] array)
 {
     _fields = new TemporalWindowField[1];
     _fields[0] = new TemporalWindowField("0") {Action = TemporalType.InputAndPredict};
 }
예제 #6
0
 public void Analyze(double[][] array)
 {
     int num2;
     TemporalWindowField field;
     int length = array[0].Length;
     if ((((uint) length) & 0) == 0)
     {
         this._xa942970cc8a85fd4 = new TemporalWindowField[length];
         goto Label_0069;
     }
     if ((((uint) num2) + ((uint) length)) > uint.MaxValue)
     {
         goto Label_0069;
     }
     Label_0032:
     field = new TemporalWindowField(num2);
     field.Action = TemporalType.InputAndPredict;
     this._xa942970cc8a85fd4[num2] = field;
     num2++;
     Label_0057:
     if (num2 < length)
     {
         goto Label_0032;
     }
     return;
     Label_0069:
     num2 = 0;
     goto Label_0057;
 }
예제 #7
0
 private static bool xe31791d60f78a8cb(TemporalWindowField xe01ae93d9fe5a880)
 {
     return xe01ae93d9fe5a880.Predict;
 }
예제 #8
0
 private static bool x14209e42cc223217(TemporalWindowField xe01ae93d9fe5a880)
 {
     return xe01ae93d9fe5a880.Input;
 }