C# 클래스 Encog.Persist.EncogFileSection

This class is used internally to parse Encog files. A file section is part of a name-value pair file.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
EncogFileSection ( String theSectionName, String theSubSectionName ) : System

Construct the object.

ParseActivationFunction ( String>.IDictionary paras, String name ) : IActivationFunction

Parse an activation function from a string.

ParseBoolean ( String>.IDictionary paras, String name ) : bool

Parse a boolean from a name-value collection of params.

ParseDouble ( String>.IDictionary paras, String name ) : double

Parse a double from a name-value collection of params.

ParseDoubleArray ( String>.IDictionary paras, String name ) : double[]

Parse a double array from a name-value collection of params.

ParseInt ( String>.IDictionary paras, String name ) : int

Parse an int from a name-value collection of params.

ParseIntArray ( String>.IDictionary paras, String name ) : int[]

Parse an int array from a name-value collection of params.

ParseMatrix ( String>.IDictionary paras, String name ) : Matrix

Parse a matrix from a name-value collection of params.

ParseParams ( ) : String>.IDictionary
SplitColumns ( String line ) : IList

Split a delimited string into columns.

ToString ( ) : String

메소드 상세

EncogFileSection() 공개 메소드

Construct the object.
public EncogFileSection ( String theSectionName, String theSubSectionName ) : System
theSectionName String The section name.
theSubSectionName String The sub section name.
리턴 System

ParseActivationFunction() 공개 정적인 메소드

Parse an activation function from a string.
public static ParseActivationFunction ( String>.IDictionary paras, String name ) : IActivationFunction
paras String>.IDictionary The params.
name String The name of the param to parse.
리턴 IActivationFunction

ParseBoolean() 공개 정적인 메소드

Parse a boolean from a name-value collection of params.
public static ParseBoolean ( String>.IDictionary paras, String name ) : bool
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 bool

ParseDouble() 공개 정적인 메소드

Parse a double from a name-value collection of params.
public static ParseDouble ( String>.IDictionary paras, String name ) : double
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 double

ParseDoubleArray() 공개 정적인 메소드

Parse a double array from a name-value collection of params.
public static ParseDoubleArray ( String>.IDictionary paras, String name ) : double[]
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 double[]

ParseInt() 공개 정적인 메소드

Parse an int from a name-value collection of params.
public static ParseInt ( String>.IDictionary paras, String name ) : int
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 int

ParseIntArray() 공개 정적인 메소드

Parse an int array from a name-value collection of params.
public static ParseIntArray ( String>.IDictionary paras, String name ) : int[]
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 int[]

ParseMatrix() 공개 정적인 메소드

Parse a matrix from a name-value collection of params.
public static ParseMatrix ( String>.IDictionary paras, String name ) : Matrix
paras String>.IDictionary The name-value pairs.
name String The name to parse.
리턴 Matrix

ParseParams() 공개 메소드

public ParseParams ( ) : String>.IDictionary
리턴 String>.IDictionary

SplitColumns() 공개 정적인 메소드

Split a delimited string into columns.
public static SplitColumns ( String line ) : IList
line String THe string to split.
리턴 IList

ToString() 공개 최종 메소드

public final ToString ( ) : String
리턴 String