|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MathException | |
---|---|
marf.math |
Uses of MathException in marf.math |
---|
Methods in marf.math that throw MathException | |
---|---|
static void |
Algorithms.FFT.doFFT(double[] padInputReal,
double[] padInputImag,
double[] padOutputReal,
double[] padOutputImag,
int piDirection)
FFT algorithm, translated from "Numerical Recipes in C++" that implements the Fast Fourier Transform, which performs a discrete Fourier transform in O(n*log(n)). |
static void |
Algorithms.FFT.doFFT2(ComplexMatrix poInputMatrix,
ComplexMatrix poOutputMatrix,
int piDirection)
Performs 2D FFT; which is merely 1D FFT for every column, and then, 1D FFT of every row of the result. |
static void |
Algorithms.LPC.doLPC(double[] padInput,
double[] padOutput,
double[] padError,
int piPoles)
Does the LPC algorithm. |
static void |
Algorithms.FFT.normalFFT(double[] padSample,
double[] padMagnitude)
Performs a normal FFT, taking a real input (supposedly an audio sample) and returns the frequency analysis in terms of "magnitude". |
static void |
Algorithms.FFT.normalFFT(double[] padSample,
double[] padMagnitude,
double[] padPhaseAngle)
Performs a normal FFT, taking a real input (supposedly an audio sample) and returns the frequency analysis in terms of "magnitude" and "phase angle". |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |