Renaming lateBindingMutualInfo to example6LateBindingMutualInfo (4) - completing internal name changes and comments

This commit is contained in:
joseph.lizier 2013-06-18 12:08:06 +00:00
parent 1656ba8730
commit 34c9d31018
2 changed files with 9 additions and 4 deletions

View File

@ -7,7 +7,7 @@
# made to the demo source code. The demo as written should be compiled once
# then one can make dynamic changes to the props file and simply
# run the class file without recompiling.
javac -classpath "../../infodynamics.jar" "infodynamics/demos/lateBindingMutualInfo.java"
javac -classpath "../../infodynamics.jar" "infodynamics/demos/Example6LateBindingMutualInfo.java"
# Run the example:
java -classpath ".:../../infodynamics.jar" infodynamics.demos.lateBindingMutualInfo lateBindingDemo.props
# Run the example, feeding in the properties file as the command line argument
java -classpath ".:../../infodynamics.jar" infodynamics.demos.Example6LateBindingMutualInfo example6LateBindingMutualInfo.props

View File

@ -11,13 +11,18 @@ import infodynamics.utils.ParsedProperties;
* and dynamically alter the instantiated class at runtime.
* We demonstrate this using a multivariate mutual information calculation.
*
* This example also demonstrates how to read simple files of arrays of data
* with the toolkit, as well as how to dynamically load properties from a
* java properties file.
*
* @author Joseph Lizier
*
*/
public class Example6LateBindingMutualInfo {
/**
* @param args
* @param args One command line argument taken, specifying location of
* the properties file.
*/
public static void main(String[] args) throws Exception {