|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--ArrayIOUtils
Constructor Summary | |
ArrayIOUtils()
|
Method Summary | |
static double[] |
LoadDoubleArray()
Loads data from a text file specified by user input. |
static double[] |
LoadDoubleArray(java.lang.String pathandfilename)
Loads data from a text file. |
static void |
main(java.lang.String[] argv)
Tests the ArrayIOUtils methods. |
static void |
printDoubleArray(double[] D)
Prints double data to the screen. |
static void |
writeDoubleArray(double[] D)
Writes double data to a file file name is specified by user input |
static void |
writeDoubleArray(double[] D,
java.lang.String filename)
Writes double data to a file |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ArrayIOUtils()
Method Detail |
public static void main(java.lang.String[] argv)
This method would not normally be invoked by users of the ArrayIOUtils class.
public static double[] LoadDoubleArray()
public static double[] LoadDoubleArray(java.lang.String pathandfilename)
pathandfilename
- is the name of the file, including full path.public static void printDoubleArray(double[] D)
D
- is the data to print out.public static void writeDoubleArray(double[] D)
D
- is the data to store to a file.public static void writeDoubleArray(double[] D, java.lang.String filename)
D
- is the data to store to a file.filename
- is the filename (including full path).
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |