All Packages Class Hierarchy This Package Previous Next Index
Class gui.Wavelet
java.lang.Object
|
+----gui.Wavelet
- public class Wavelet
- extends java.lang.Object
-
Wavelet()
-
-
demo(int[][])
-
-
demo2d(int[][])
-
-
fhw(int[], int)
- Single level Forward Haar Wavelet transform.
-
fhw(int[][])
-
-
fhw(int[][], int, int)
- Multilevel 2D forward haar wavelet transform.
-
fihw2d(int[][])
-
-
fillprime(int[][])
- Fill a 2D matrix with prime numbers.
-
ihw(int[], int)
- Single level Inverse Haar Wavelet transform.
-
ihw(int[][])
-
-
ihw(int[][], int, int)
- Multilevel 2D inverse haar wavelet transform.
-
isprime(int)
- Check if a number is prime.
-
log2(int)
-
-
main(String[])
-
-
main2(String[])
-
-
show(int[], int, boolean)
- Print an array (or part of it) given the size to print.
-
show(int[][])
- Print an array (or part of it) given the size to print.
-
show(int[][], int)
-
-
transpose(int[][])
-
Wavelet
public Wavelet()
main
public static void main(java.lang.String args[])
demo
public static void demo(int x[][])
demo2d
public static void demo2d(int x[][])
fihw2d
public static void fihw2d(int x[][])
fhw
public static void fhw(int x[][])
ihw
public static void ihw(int x[][])
log2
public static int log2(int n)
main2
public static void main2(java.lang.String args[])
show
public static void show(int in[][])
- Print an array (or part of it) given the size to print.
This is an overloaded method for showing up a whole 2D
array.
show
public static void show(int in[][],
int size)
show
public static void show(int in[],
int size,
boolean colon)
- Print an array (or part of it) given the size to print.
If colon is true, a coma will be printed half way between
the members (separating the avereges from the coefficients).
fhw
public static void fhw(int in[],
int size)
- Single level Forward Haar Wavelet transform.
fhw
public static void fhw(int in[][],
int size,
int level)
- Multilevel 2D forward haar wavelet transform.
This is an overloaded "fhw" method for applying forward
haar wavelet "level" times on the matrix, each time with
half the range, and doing that on each row in the 2D matrix.
ihw
public static void ihw(int in[],
int size)
- Single level Inverse Haar Wavelet transform.
ihw
public static void ihw(int in[][],
int size,
int level)
- Multilevel 2D inverse haar wavelet transform.
This is an overloaded "ihw" method for applying inverse
haar wavelet "level" times on the matrix, each time with
double the range.
fillprime
public static void fillprime(int in[][])
- Fill a 2D matrix with prime numbers.
isprime
public static boolean isprime(int x)
- Check if a number is prime.
transpose
public static int[][] transpose(int a[][])
All Packages Class Hierarchy This Package Previous Next Index