Encog.App.Analyst.CSV.Basic.BaseCachedColumn.BaseCachedColumn C# (CSharp) 메소드

BaseCachedColumn() 공개 메소드

Construct the cached column.
public BaseCachedColumn ( String theName, bool theInput, bool theOutput ) : System
theName String The name of the column.
theInput bool Is this column used for input?
theOutput bool Is this column used for output?
리턴 System
        public BaseCachedColumn(String theName, bool theInput,
                                bool theOutput)
        {
            Name = theName;
            Input = theInput;
            Output = theOutput;
            Ignore = false;
        }