mirror of https://github.com/jlizier/jidt
Renaming lateBindingMutualInfo to example6LateBindingMutualInfo (4) - completing internal name changes and comments
This commit is contained in:
parent
1656ba8730
commit
34c9d31018
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in New Issue