Code covered by the BSD License
-
conv2fft (h, X, shape, Xfft)
-
dirup (dir)
-
filter2fft (h, X, shape, Xfft...
-
get_stack_trace (s)
-
is_function_called (line, fun...
-
myassert (observed, expected,...
-
strend (str1, str2)
-
test (varargin)
TODO: in stack information, replace pointers to temporary files with
-
View all files
conv2fft_reuse
by Felipe G. Nievinski
06 Mar 2011
(Updated 07 Mar 2011)
Reuse intermediary results in multiple related convolutions with the same data but different kernels
|
Watch this File
|
| File Information |
| Description |
Sometimes you have to perform multiple related convolutions, using the same data but different kernels. This function allows you to reuse intermediary results. When computing the convolution via multiplication in the frequency domain, we reuse the FFT of the data, and need to compute only the FFT of the kernel and the IFFT of their product. So this helps if the kernels are small and many and the data is large and unique. Matrix (not just vector) input is supported. Calling syntax is identical to Matlab's own conv2/filter2. If you need an FFT-based implementation of convolution without reuse, I'd recommend submission number 24504. Run test('filter2fft') to check your installation. |
| Acknowledgements |
The author wishes to acknowledge the following in the creation of this submission:
FFT-based convolution, testit
|
| MATLAB release |
MATLAB 7.9 (2009b)
|
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Updates |
| 07 Mar 2011 |
updated list of acknowledgements and list of incorporated submissions. |
|
Contact us at files@mathworks.com