How to implement a "nonlinear" convolution?
10 views (last 30 days)
Show older comments
This is a more general mathematical question, but I am asking this here since it may be a frequent problem and perhaps matlab implementations already exist...
I have a certain impulse response, and a vector of onset times. When I convolve these two, for closely spaced onset times, the amplitudes of the individual impulse responses just add up linearly, which is, however, not the case in the real world.
There are two nonlinear effects, which I would like to add to the simple convolution model:
1. There is an upper limit of signal amplitude, which cannot be exceeded by summing up more and more impulse responses.
2. During the repetition of many impulse responses, a signal "undershoot" is building up, which causes a very long slowly recovering negative signal, that becomes apparent after the positive impulse responses are finished.
I hope this was clear, I would appreciate any ideas, references or pseudo code. Thanks!
0 Comments
Answers (1)
Image Analyst
on 22 Nov 2012
You can convolve and then clip:
filteredImage = conv2(inputIMage, kernel);
clippedImage = filteredImage; % Initialize
clippedImage(filteredImage > clippingValue) = clippingValue; % Clip
Or you can write whatever kind of complicated filter you want and call it with nlfilter().
2 Comments
Image Analyst
on 22 Nov 2012
Edited: Image Analyst
on 22 Nov 2012
Yes. There is a conv() function for 1D in base MATLAB. And nlfilter() is in the Image Processing Toolbox and 1D vectors/signals are also valid images.
See Also
Categories
Find more on Digital Filter Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!