Method | Description | |
---|---|---|
BeginEncogObject ( String objectType, |
Write the beginning XML for an Encog object.
|
|
CreatePersistor ( String className ) : IPersistor |
Create a persistor object. These objects know how to persist certain types of classes.
|
|
LoadMatrix ( ReadXML xmlIn ) : Matrix |
Load a matrix from the reader.
|
|
SaveMatrix ( Matrix matrix, WriteXML xmlOut ) : void |
Save the specified matrix.
|
Method | Description | |
---|---|---|
PersistorUtil ( ) : System |
Private constructor.
|
public static BeginEncogObject ( String objectType, |
||
objectType | String | The object type to persist. |
xmlOut | The object that is being persisted. | |
obj | IEncogPersistedObject | The XML writer. |
top | bool | Is this a top-level object, that needs a name /// and description? |
return | void |
public static CreatePersistor ( String className ) : IPersistor | ||
className | String | The name of the class to create a persistor for. |
return | IPersistor |
public static LoadMatrix ( ReadXML xmlIn ) : Matrix | ||
xmlIn | ReadXML | The XML reader. |
return | Matrix |
public static SaveMatrix ( Matrix matrix, WriteXML xmlOut ) : void | ||
matrix | Matrix | The matrix to save. |
xmlOut | WriteXML | The XML writer. |
return | void |