C# Class Encog.ML.BasicML

Inheritance: IMLProperties
Show file Open project: encog/encog-silverlight-core

Public Methods

Method Description
GetPropertyDouble ( String name ) : double

Get the specified property as a double.

GetPropertyLong ( String name ) : long

Get the specified property as a long.

GetPropertyString ( String name ) : String

Get the specified property as a string.

SetProperty ( String name, String v ) : void

Set a property as a double.

SetProperty ( String name, double d ) : void

Set a property as a double.

SetProperty ( String name, long l ) : void

Set a property as a long.

UpdateProperties ( ) : void

Update from the propeties stored in the hash map. Should be called whenever the properties change and might need to be reloaded.

Protected Methods

Method Description
BasicML ( ) : System

Construct the object.

Method Details

BasicML() protected method

Construct the object.
protected BasicML ( ) : System
return System

GetPropertyDouble() public method

Get the specified property as a double.
public GetPropertyDouble ( String name ) : double
name String The name of the property.
return double

GetPropertyLong() public method

Get the specified property as a long.
public GetPropertyLong ( String name ) : long
name String The name of the specified property.
return long

GetPropertyString() public method

Get the specified property as a string.
public GetPropertyString ( String name ) : String
name String The name of the property.
return String

SetProperty() public method

Set a property as a double.
public SetProperty ( String name, String v ) : void
name String The name of the property.
v String The value of the property.
return void

SetProperty() public method

Set a property as a double.
public SetProperty ( String name, double d ) : void
name String The name of the property.
d double The value of the property.
return void

SetProperty() public method

Set a property as a long.
public SetProperty ( String name, long l ) : void
name String The name of the property.
l long The value of the property.
return void

UpdateProperties() public abstract method

Update from the propeties stored in the hash map. Should be called whenever the properties change and might need to be reloaded.
public abstract UpdateProperties ( ) : void
return void