diff --git a/ss2013/Bachelor Thesis/cd_ug.7z b/ss2013/Bachelor Thesis/cd_ug.7z new file mode 100644 index 00000000..9b9bd0c0 Binary files /dev/null and b/ss2013/Bachelor Thesis/cd_ug.7z differ diff --git a/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/app/analyst/commands/CmdNormalize.html b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/app/analyst/commands/CmdNormalize.html new file mode 100644 index 00000000..d281baa4 --- /dev/null +++ b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/app/analyst/commands/CmdNormalize.html @@ -0,0 +1,341 @@ + + + + + + + +CmdNormalize (Encog Core 3.1.0 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.encog.app.analyst.commands +
+Class CmdNormalize

+
+java.lang.Object
+  extended by org.encog.app.analyst.commands.Cmd
+      extended by org.encog.app.analyst.commands.CmdNormalize
+
+
+
+
public class CmdNormalize
extends Cmd
+ + +

+The normalize command is used to normalize data. Data normalization generally + maps values from one number range to another, typically to -1 to 1. +

+ +

+


+ +

+ + + + + + + + + + + +
+Field Summary
+static StringCOMMAND_NAME + +
+          The name of this command.
+  + + + + + + + + + + +
+Constructor Summary
CmdNormalize(EncogAnalyst theAnalyst) + +
+          Construct the normalize command.
+  + + + + + + + + + + + + + + + +
+Method Summary
+ booleanexecuteCommand(String args) + +
+          Execute this command.
+ StringgetName() + +
+          
+ + + + + + + +
Methods inherited from class org.encog.app.analyst.commands.Cmd
getAnalyst, getProp, getScript, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+COMMAND_NAME

+
+public static final String COMMAND_NAME
+
+
The name of this command. +

+

+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+CmdNormalize

+
+public CmdNormalize(EncogAnalyst theAnalyst)
+
+
Construct the normalize command. +

+

+
Parameters:
theAnalyst - The analyst to use.
+
+ + + + + + + + +
+Method Detail
+ +

+executeCommand

+
+public final boolean executeCommand(String args)
+
+
Execute this command. +

+

+
Specified by:
executeCommand in class Cmd
+
+
+
Parameters:
args - The arguments for this command. +
Returns:
True if processing should stop after this command.
+
+
+
+ +

+getName

+
+public final String getName()
+
+
+

+

+
Specified by:
getName in class Cmd
+
+
+ +
Returns:
The name of this command.
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012. All Rights Reserved. + + diff --git a/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/RBFEnum.html b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/RBFEnum.html new file mode 100644 index 00000000..5998e9ff --- /dev/null +++ b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/RBFEnum.html @@ -0,0 +1,367 @@ + + + + + + + +RBFEnum (Encog Core 3.1.0 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.encog.mathutil.rbf +
+Enum RBFEnum

+
+java.lang.Object
+  extended by java.lang.Enum<RBFEnum>
+      extended by org.encog.mathutil.rbf.RBFEnum
+
+
+
All Implemented Interfaces:
Serializable, Comparable<RBFEnum>
+
+
+
+
public enum RBFEnum
extends Enum<RBFEnum>
+ + +

+The implemented function types of the RBFs. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
Gaussian + +
+          Gaussian.
InverseMultiquadric + +
+          Inverse Multiquadric.
MexicanHat + +
+          Mexican hat.
Multiquadric + +
+          Multiquadric.
+  + + + + + + + + + + + + + + + +
+Method Summary
+static RBFEnumvalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static RBFEnum[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+Gaussian

+
+public static final RBFEnum Gaussian
+
+
Gaussian. +

+

+
+
+
+ +

+Multiquadric

+
+public static final RBFEnum Multiquadric
+
+
Multiquadric. +

+

+
+
+
+ +

+InverseMultiquadric

+
+public static final RBFEnum InverseMultiquadric
+
+
Inverse Multiquadric. +

+

+
+
+
+ +

+MexicanHat

+
+public static final RBFEnum MexicanHat
+
+
Mexican hat. +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static RBFEnum[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (RBFEnum c : RBFEnum.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static RBFEnum valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012. All Rights Reserved. + + diff --git a/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/class-use/GaussianFunction.html b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/class-use/GaussianFunction.html new file mode 100644 index 00000000..7022b20b --- /dev/null +++ b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/mathutil/rbf/class-use/GaussianFunction.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class org.encog.mathutil.rbf.GaussianFunction (Encog Core 3.1.0 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
org.encog.mathutil.rbf.GaussianFunction

+
+No usage of org.encog.mathutil.rbf.GaussianFunction +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012. All Rights Reserved. + + diff --git a/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/ml/genetic/genome/package-frame.html b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/ml/genetic/genome/package-frame.html new file mode 100644 index 00000000..b0113504 --- /dev/null +++ b/ss2013/Bachelor Thesis/cd_ug/src/HMM/javadoc/encog/org/encog/ml/genetic/genome/package-frame.html @@ -0,0 +1,50 @@ + + + + + + + +org.encog.ml.genetic.genome (Encog Core 3.1.0 API) + + + + + + + + + + + +org.encog.ml.genetic.genome + + + + +
+Interfaces  + +
+CalculateGenomeScore +
+Genome
+ + + + + + +
+Classes  + +
+BasicGenome +
+Chromosome +
+GenomeComparator
+ + + +