All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class gui.Wavelet

java.lang.Object
   |
   +----gui.Wavelet

public class Wavelet
extends java.lang.Object

Constructor Index

 o Wavelet()

Method Index

 o demo(int[][])
 o demo2d(int[][])
 o fhw(int[], int)
Single level Forward Haar Wavelet transform.
 o fhw(int[][])
 o fhw(int[][], int, int)
Multilevel 2D forward haar wavelet transform.
 o fihw2d(int[][])
 o fillprime(int[][])
Fill a 2D matrix with prime numbers.
 o ihw(int[], int)
Single level Inverse Haar Wavelet transform.
 o ihw(int[][])
 o ihw(int[][], int, int)
Multilevel 2D inverse haar wavelet transform.
 o isprime(int)
Check if a number is prime.
 o log2(int)
 o main(String[])
 o main2(String[])
 o show(int[], int, boolean)
Print an array (or part of it) given the size to print.
 o show(int[][])
Print an array (or part of it) given the size to print.
 o show(int[][], int)
 o transpose(int[][])

Constructors

 o Wavelet
 public Wavelet()

Methods

 o main
 public static void main(java.lang.String args[])
 o demo
 public static void demo(int x[][])
 o demo2d
 public static void demo2d(int x[][])
 o fihw2d
 public static void fihw2d(int x[][])
 o fhw
 public static void fhw(int x[][])
 o ihw
 public static void ihw(int x[][])
 o log2
 public static int log2(int n)
 o main2
 public static void main2(java.lang.String args[])
 o 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.

 o show
 public static void show(int in[][],
                         int size)
 o 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).

 o fhw
 public static void fhw(int in[],
                        int size)
Single level Forward Haar Wavelet transform.

 o 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.

 o ihw
 public static void ihw(int in[],
                        int size)
Single level Inverse Haar Wavelet transform.

 o 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.

 o fillprime
 public static void fillprime(int in[][])
Fill a 2D matrix with prime numbers.

 o isprime
 public static boolean isprime(int x)
Check if a number is prime.

 o transpose
 public static int[][] transpose(int a[][])

All Packages  Class Hierarchy  This Package  Previous  Next  Index