All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Jampack.Print

java.lang.Object
   |
   +----Jampack.Print

public class Print
extends Object
Print prints numbers, matrices, and arrays. All floating-point numbers are printed in e format with field width w and d figures to the left of the right of the decimal point. For the defaults see Parameters .


Constructor Index

 o Print()

Method Index

 o DoubletoEstring(double, int, int)
Converts a double to w.d e format.
 o o(double)
Prints a double in default e format.
 o o(double, int, int)
Prints a double in w.d e format.
 o o(double[])
Prints an array of doubles in default e format.
 o o(double[], int, int)
Prints an array of doubles in w.d e format.
 o o(double[][])
Prints a 2-dimensional array of doubles in default e format.
 o o(double[][], int, int)
Prints a 2-dimensional array of doubles in w.d e format.
 o o(int)
Prints an int in default format.
 o o(int, int)
Prints and int in a field of width w.
 o o(int[])
Prints an integer array in default format.
 o o(int[], int)
Prints an integer array in fields of width w.
 o o(Z)
Prints a Z in default e format.
 o o(Z, int, int)
Prints a Z in w.d e format.
 o o(Z1)
Prints a Z1 in default format.
 o o(Z1, int, int)
Prints a Z1 in w.d e format
 o o(Z[])
Prints an array of Z's in default e format.
 o o(Z[], int, int)
Prints an array of Z's in w.d e format.
 o o(Z[][])
Prints a 2-dimensional array of Z in default e format.
 o o(Z[][], int, int)
Prints a 2-dimensional array of Z in w.d e format.
 o o(Zdiagmat)
Prints a Zdiagmat in default format.
 o o(Zdiagmat, int, int)
Prints a Zdiagmat in w.d e format.
 o o(Zmat)
Prints a Zmat in default e format.
 o o(Zmat, int, int)
Prints a Zmat in w.d e format.
 o ZtoEstring(Z, int, int)
Converts a Z to w.d e format.

Constructors

 o Print
 public Print()

Methods

 o o
 public static void o(int k)
Prints an int in default format.

 o o
 public static void o(int k,
                      int w)
Prints and int in a field of width w.

 o o
 public static void o(int ia[])
Prints an integer array in default format.

 o o
 public static void o(int ia[],
                      int w)
Prints an integer array in fields of width w.

 o o
 public static void o(double a)
Prints a double in default e format.

 o o
 public static void o(double a,
                      int w,
                      int d)
Prints a double in w.d e format.

 o o
 public static void o(double a[])
Prints an array of doubles in default e format.

 o o
 public static void o(double a[],
                      int w,
                      int d)
Prints an array of doubles in w.d e format.

 o o
 public static void o(double A[][])
Prints a 2-dimensional array of doubles in default e format.

 o o
 public static void o(double A[][],
                      int w,
                      int d)
Prints a 2-dimensional array of doubles in w.d e format.

 o o
 public static void o(Z a)
Prints a Z in default e format.

 o o
 public static void o(Z a,
                      int w,
                      int d)
Prints a Z in w.d e format.

 o o
 public static void o(Z a[])
Prints an array of Z's in default e format.

 o o
 public static void o(Z a[],
                      int w,
                      int d)
Prints an array of Z's in w.d e format.

 o o
 public static void o(Z A[][])
Prints a 2-dimensional array of Z in default e format.

 o o
 public static void o(Z A[][],
                      int w,
                      int d)
Prints a 2-dimensional array of Z in w.d e format.

 o o
 public static void o(Z1 z)
Prints a Z1 in default format.

 o o
 public static void o(Z1 z,
                      int w,
                      int d)
Prints a Z1 in w.d e format

 o o
 public static void o(Zmat A)
Prints a Zmat in default e format.

 o o
 public static void o(Zmat A,
                      int w,
                      int d)
Prints a Zmat in w.d e format. This method checks to see if the Zmat is real, in which case it prints only the real part.

 o o
 public static void o(Zdiagmat D)
Prints a Zdiagmat in default format.

 o o
 public static void o(Zdiagmat D,
                      int w,
                      int d)
Prints a Zdiagmat in w.d e format.

 o DoubletoEstring
 public static String DoubletoEstring(double num,
                                      int w,
                                      int d)
Converts a double to w.d e format.

 o ZtoEstring
 public static String ZtoEstring(Z num,
                                 int w,
                                 int d)
Converts a Z to w.d e format.


All Packages  Class Hierarchy  This Package  Previous  Next  Index