projectpossibility
Class DFTpair

java.lang.Object
  extended by projectpossibility.DFTpair
All Implemented Interfaces:
java.lang.Comparable

public class DFTpair
extends java.lang.Object
implements java.lang.Comparable

DFTpair stores an amplitude and frequency like coordinates of a wave in the frequency domain

Author:
Team AG

Constructor Summary
DFTpair(double f, double a)
          The constructor for the DFTpair takes in parameters frequency and amplitude, denoted by f and a.
 
Method Summary
 int compareTo(java.lang.Object arg0)
           
 double getAmp()
           
 double getFreq()
           
 void setAmp(double amp)
          Sets the pair's amplitude to the value of amp.
 void setFreq(double freq)
          Sets the pair's frequency to the desired value
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DFTpair

public DFTpair(double f,
               double a)
The constructor for the DFTpair takes in parameters frequency and amplitude, denoted by f and a.

Parameters:
f - frequency calculated
a - amplitude from original wave form
Method Detail

getAmp

public double getAmp()
Returns:
the stored value of amplitude of DFT pair.

setAmp

public void setAmp(double amp)
Sets the pair's amplitude to the value of amp.

Parameters:
amp - desired amplitude value

getFreq

public double getFreq()
Returns:
stored value of frequency for the pair.

setFreq

public void setFreq(double freq)
Sets the pair's frequency to the desired value

Parameters:
freq - desired value of frequency

compareTo

public int compareTo(java.lang.Object arg0)
Specified by:
compareTo in interface java.lang.Comparable