C# Class Encog.ML.BasicML

Inheritance: IMLProperties
Afficher le fichier Open project: encog/encog-silverlight-core

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
BasicML ( ) : System

Construct the object.

Method Details

BasicML() protected méthode

Construct the object.
protected BasicML ( ) : System
Résultat System

GetPropertyDouble() public méthode

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

GetPropertyLong() public méthode

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

GetPropertyString() public méthode

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

SetProperty() public méthode

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.
Résultat void

SetProperty() public méthode

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.
Résultat void

SetProperty() public méthode

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.
Résultat void

UpdateProperties() public abstract méthode

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
Résultat void