Encog.Neural.Data.Folded.FoldedDataSet.GetRecord C# (CSharp) 메소드

GetRecord() 공개 메소드

Get a record.
public GetRecord ( long index, IEngineData pair ) : void
index long The index.
pair IEngineData The record.
리턴 void
        public void GetRecord(long index, IEngineData pair)
        {
            this.underlying.GetRecord(this.CurrentFoldOffset + index, pair);
        }