Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add method in FloatArray for fast fft-based convolution #9

Open
giuliomoro opened this issue Jun 29, 2015 · 2 comments
Open

Add method in FloatArray for fast fft-based convolution #9

giuliomoro opened this issue Jun 29, 2015 · 2 comments

Comments

@giuliomoro
Copy link
Collaborator

void FloatArray::convolveFast(FloatArray operand2, FloatArray destination, ComplexFloatArray temp1, ComplexFloatArray temp2)
maybe will require a temp3 as well

@pingdynasty
Copy link
Collaborator

Let's do this but as void FastFourierTransform::convolve(FloatArray lhs, FloatArray rhs, FloatArray dest)
(use lhs / rhs for left/right operands, and other for e.g. copy constructors).
Can it not be done with one temporary complex array?

@pingdynasty
Copy link
Collaborator

Actually it might be better to create a FastFourierConvolution class with all temporary arrays allocated in the create method.
Low priority.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants