Package com.pdplusplus
Class ComplexPole
- java.lang.Object
-
- com.pdplusplus.PdMaster
-
- com.pdplusplus.ComplexPole
-
public class ComplexPole extends PdMaster
-
-
Field Summary
Fields Modifier and Type Field Description long
pointer
-
Constructor Summary
Constructors Constructor Description ComplexPole()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ComplexPole
allocate()
void
clear()
static void
free(ComplexPole cp)
double
getLast()
double
getLastImaginary()
double
getLastReal()
double[]
perform(double real, double imag, double realCoef, double imagCoef)
void
set(double real, double imag)
void
setLast(double last)
void
setLastImaginary(double lastimag)
void
setLastReal(double lastreal)
-
Methods inherited from class com.pdplusplus.PdMaster
dbtopow, dbtorms, DEBUG, free, ftom, getBlockSize, getFFTWindow, getSampleRate, getTimeInMilliSeconds, getTimeInSampleTicks, mtof, powtodb, rmstodb, SET_DEBUG, setBlockSize, setFFTWindow, setSampleRate
-
-
-
-
Method Detail
-
allocate
public static ComplexPole allocate()
-
free
public static void free(ComplexPole cp)
-
perform
public double[] perform(double real, double imag, double realCoef, double imagCoef)
-
set
public void set(double real, double imag)
-
clear
public void clear()
-
setLast
public void setLast(double last)
-
setLastReal
public void setLastReal(double lastreal)
-
setLastImaginary
public void setLastImaginary(double lastimag)
-
getLast
public double getLast()
-
getLastReal
public double getLastReal()
-
getLastImaginary
public double getLastImaginary()
-
-