  Time Series Program
 

  1. Creating a Training Data File from Time Series:
     Given a file of columnar time series data, in which each row 
     corresponds to a different time, the program slides a window 
     down the file and writes inputs and desired outputs to a 
     training data file.
  
  2. The user chooses some rows and columns in the sliding window
     as inputs, and chooses others as desired outputs. For example, 
     a file of price and volumn data on a stock can be processed 
     into a training data file for stock market prediction, if past 
     prices and volumns are inputs, and the present price is the 
     desired output.
 
  3. Input File Size
   a. Any number of training or testing patterns
   b. Up to 100 inputs
   c. Up to 40 outputs 
 
  4. Demo Run of Training File Creation From Time Series
 

  ouf00.txt  ! filename of file containing columns of time series data
  out2.tra   ! filename of file to store the training file
  2          ! number of days from which inputs will be obtained(each day corresponding 24 coloumns)
  1          ! number of days from which outputs will be obtained 

      Here, we will use power loading data to form training data for power forcasting

    Click on start and observe the program running
    The program will created a file called "out2.tra" which has 48 inputs 
    and 24 desired output.
    
    
